我的C#Foreach循環中的continue語句有問題。C#Foreach循環 - 繼續問題
我希望它檢查datagridview中是否有空白單元格,如果是,則跳過打印值並繼續檢查下一個單元格。
幫助大大讚賞。
下面是代碼:
foreach (DataGridViewRow row in this.dataGridView1.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
if (cell.Size.IsEmpty)
{
continue;
}
MessageBox.Show(cell.Value.ToString());
}
}
你已經忘了提及您所看到的問題... – 2009-05-02 16:32:22