Class Rows

Rows 类

表示表的行集合。

public sealed class Rows : IEnumerable<Row>

构造函数

名称描述
Rows()默认构造函数。

属性

名称描述
Count { get; }项目数量。
Item { get; set; }获取或设置行。

方法

名称描述
Add()将行添加到集合。
Add(Row)将行添加到集合。
Dispose()释放资源。
GetEnumerator()获取集合的枚举器
IndexOf(Row)返回集合中行的索引。
Remove(Row)从集合中移除行。
RemoveAt(int)从集合中移除指定位置的行。
RemoveRange(int, int)从集合中移除行集。

另见