textColumn = DataGridViewTextBoxColumn
name = textColumn(DataPropertyName: "Name")
But this does
textColumn = DataGridViewTextBoxColumn
name = textColumn()
and this
name = DataGridViewTextBoxColumn(DataPropertyName: "Name")
Description
This doesn't work
textColumn = DataGridViewTextBoxColumn
name = textColumn(DataPropertyName: "Name")
But this does
textColumn = DataGridViewTextBoxColumn
name = textColumn()
and this
name = DataGridViewTextBoxColumn(DataPropertyName: "Name")