Class CharCollection
CharCollection class
Char collection.
public class CharCollection : Collection
Properties
| Name | Description |
|---|
| Count { get; } | Gets the number of elements actually contained in the collection. |
| Item { get; } | Gets the element at the specified index. |
Methods
| Name | Description |
|---|
| Add(Char) | Add the Char object in the collection. |
| Clear() | Removes all elements from collection. |
| GetChar(int) | Gets the element at the specified IX. |
| GetEnumerator() | Supports a simple iteration over a nongeneric collection. |
| IsExist(int) | Is exist item in the collection. |
| Remove(Char) | Remove the Char object from the collection. |
See Also