[]
Collection of ordered int.
public class C1OrderedSet : IOrderedSet<int>, ICollection<int>, IEnumerable<int>, IEnumerable
| Name | Description |
|---|---|
| C1OrderedSet() | Initializes a new instance of the C1OrderedSet class. |
| C1OrderedSet(C1OrderedSet) | Initializes a new instance of the C1OrderedSet class. |
| Name | Description |
|---|---|
| Count | Gets the number of elements contained in the ICollection<T>. |
| IsReadOnly | Gets a value indicating whether the ICollection<T> is read-only. |
| this[int] | Gets the int at the specified index. |
| Name | Description |
|---|---|
| Add(C1OrderedSet) | Joins the specified set. |
| Add(int) | Adds an item to the ICollection<T>. |
| AddRange(int, int) | Adds a range of elements. |
| Clear() | Removes all items from the ICollection<T>. |
| Contains(int) | Determines whether the ICollection<T> contains a specific value. |
| CopyTo(int[], int) | Copies the elements of the ICollection<T> to an Array, starting at a particular Array index. |
| GetEnumerator() | Returns an enumerator that iterates through the collection. |
| Remove(C1OrderedSet) | Removes the specified items. |
| Remove(int) | Removes the first occurrence of a specific object from the ICollection<T>. |
| RemoveRange(int, int) | Removes a range of elements. |
| ToString() |