嗨,我编写了这段代码来在gridview 中搜索carderial。但我得到一个错误:
“你调用的对象是空的。”
foreach (DataGridViewRow row in dataGridView2.Rows)
{
if (row.Cells["CardSerial"].Value.ToString().Equals(textBox2.Text))
{
dataGridView2.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
}
}
你能告诉我有什么问题吗?