Class RangeCollection

RangeCollection class

Encapsulates a collection of Range objects.

public class RangeCollection : CollectionBase<Range>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; }Gets the Range element at the specified index.
Item { get; set; }

Methods

NameDescription
Add(Range)Adds a Range item to the collection.
BinarySearch(Range)
BinarySearch(Range, IComparer<Range>)
BinarySearch(int, int, Range, IComparer<Range>)
Clear()
Contains(Range)
CopyTo(Range[])
CopyTo(Range[], int)
CopyTo(int, Range[], int, int)
Exists(Predicate<Range>)
Find(Predicate<Range>)
FindAll(Predicate<Range>)
FindIndex(Predicate<Range>)
FindIndex(int, Predicate<Range>)
FindIndex(int, int, Predicate<Range>)
FindLast(Predicate<Range>)
FindLastIndex(Predicate<Range>)
FindLastIndex(int, Predicate<Range>)
FindLastIndex(int, int, Predicate<Range>)
GetEnumerator()
IndexOf(Range)
IndexOf(Range, int)
IndexOf(Range, int, int)
LastIndexOf(Range)
LastIndexOf(Range, int)
LastIndexOf(Range, int, int)
RemoveAt(int)

See Also