您好我已經編寫了此代碼以在gridview中搜索cardserial。但是出現錯誤:NullReferenceException當在DataGridView中搜索數據時
「對象引用未設置爲對象的實例」。
foreach (DataGridViewRow row in dataGridView2.Rows)
{
if (row.Cells["CardSerial"].Value.ToString().Equals(textBox2.Text))
{
dataGridView2.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
}
}
你能告訴我出了什麼問題?
可能重複(HTTP [什麼是.NET一個NullReferenceException?]://計算器。 com/questions/4660142/what-is-null-reference-in-net) –
調試並確定哪一行發生錯誤。 – Ehsan