Class RowCollection

RowCollection class

Row collection.

public class RowCollection : Collection<Row>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; set; }

Methods

NameDescription
Add(Row)Add the row in the collection.
BinarySearch(Row)
BinarySearch(Row, IComparer<Row>)
BinarySearch(int, int, Row, IComparer<Row>)
Clear()
Contains(Row)
CopyTo(Row[])
CopyTo(Row[], int)
CopyTo(int, Row[], int, int)
Exists(Predicate<Row>)
Find(Predicate<Row>)
FindAll(Predicate<Row>)
FindIndex(Predicate<Row>)
FindIndex(int, Predicate<Row>)
FindIndex(int, int, Predicate<Row>)
FindLast(Predicate<Row>)
FindLastIndex(Predicate<Row>)
FindLastIndex(int, Predicate<Row>)
FindLastIndex(int, int, Predicate<Row>)
GetEnumerator()
IndexOf(Row)
IndexOf(Row, int)
IndexOf(Row, int, int)
LastIndexOf(Row)
LastIndexOf(Row, int)
LastIndexOf(Row, int, int)
Remove(Row)Remove the row from the collection.
RemoveAt(int)

See Also