i need two column in datagridview and one load array value ex. data and other one ex.data1 are editable...
Code:
dataGridView1.DataSource = numbers.Where(x => x > 0).Select((x, index) =>
new { data = x data1=""}).ToList();
dataGridView1.Columns[0].ReadOnly = false;
dataGridView1.BeginEdit(true);