[]
Defines methods to manipulate ordered sets.
public interface IOrderedSet<T> : ICollection<T>, IEnumerable<T>, IEnumerable where T : IComparable<T>, IConvertible
Public Interface IOrderedSet(Of T As {IComparable(Of T), IConvertible})
Inherits ICollection(Of T), IEnumerable(Of T), IEnumerable
| Name | Description |
|---|---|
| T | The type of the elements in the collection. |
| Name | Description |
|---|---|
| this[int] | Gets the item at the specified index. |
| Ranges | Gets the ranges of the set. |
| Name | Description |
|---|---|
| AddRange(T, T) | Adds a range of elements. |
| RemoveRange(T, T) | Removes a range of elements. |