如何从等于DataGridView1的数据库中获取ID(在C#中选择行ID单元格值)?
我在vb.net中有此代码,现在我必须将其转换为c#。
我的代码
DataGridView1.Item(0, DataGridView1.CurrentRow.Index).Value
答案 0 :(得分:0)
尽管它是Getting the first cell from selected row from DataGridView in C#的副本
从所选行中获取第一个单元格值将是:
dataGridView1.SelectedRows[0].Cells[0].Value.ToString();