Class CharCollection

CharCollection class

Char collection.

public class CharCollection : Collection<Char>

Properties

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

Methods

NameDescription
Add(Char)Add the Char object in the collection.
BinarySearch(Char)
BinarySearch(Char, IComparer<Char>)
BinarySearch(int, int, Char, IComparer<Char>)
Clear()
Contains(Char)
CopyTo(Char[])
CopyTo(Char[], int)
CopyTo(int, Char[], int, int)
Exists(Predicate<Char>)
Find(Predicate<Char>)
FindAll(Predicate<Char>)
FindIndex(Predicate<Char>)
FindIndex(int, Predicate<Char>)
FindIndex(int, int, Predicate<Char>)
FindLast(Predicate<Char>)
FindLastIndex(Predicate<Char>)
FindLastIndex(int, Predicate<Char>)
FindLastIndex(int, int, Predicate<Char>)
GetChar(int)Gets the element at the specified IX.
GetEnumerator()
IndexOf(Char)
IndexOf(Char, int)
IndexOf(Char, int, int)
LastIndexOf(Char)
LastIndexOf(Char, int)
LastIndexOf(Char, int, int)
Remove(Char)Remove the Char object from the collection.
RemoveAt(int)

See Also