有没有更好的方法来获得连续的元素数量?

时间:2018-02-01 16:41:46

标签: c#

现在我正在使用类似下面代码的内容,有没有人知道更好的方法呢?

foreach (DataRow row in table.Dummy.Rows)
    {
        int length = row.ItemArray.Length;
    }

1 个答案:

答案 0 :(得分:0)

具有Count属性的DataTable.Columns集合。谢谢史蒂夫的回答

table.Dummy.Columns.Count