0
我有一個包含2列的datagridview。列1可以具有隨機填充的單元格。我想運行一個代碼讀取所有單元格我試過這個代碼在C#中讀取DatagridView中的空單元格#
for (int i = 0; i < (dataGridView1.Rows.Count - 1); i++)
{
for (int j = 0; j < dataGridView1.Columns.Count; j++)
{
if (this.dataGridView1.Rows[i].Cells[0] != null
&& this.dataGridView1.Rows[i].Cells[1] != null)
{
str1 = this.dataGridView1.Rows[i].Cells[0].Value.ToString();
str2 = this.dataGridView1.Rows[i++].Cells[0].Value.ToString();
if (str1 != str2)
{//Some code will be here}`
.....
但是,循環終止閱讀任何空單元格後...請幫助我。我需要儘快完成這項工作..
由於加布裏埃爾去除重複的,我有我的解決方案....感謝 –
使用Convert.toString()來處理的噸的'NULL'並與「」(空字符串) – Pranav
@SuryaKantTripathi比較,如果答案幫助接受/ upvote通常是有幫助的,請閱讀http://meta.stackexchange.com/questions/5234/how-does-accepting-an-答案工作 – mockinterface