4

我有一个 if 条件,例如:

if (e.Item.Cells[7].Text == "something")

但是如何首先检查单元格 [7]是否首先存在?

谢谢...

4

1 回答 1

7

你可以使用Cells.Count属性。如果它大于 7,则表示Cells[7]存在(因为索引是从零开始的)。

if (e.Item.Cells.Count > 7 && e.Item.Cells[7].Text == "something")
于 2012-07-17T16:42:56.030 回答