Enum representing the possible types of a sequence.
| Enumerator |
|---|
| Invalid | Represents an invalid type.
|
| String | Represents a String.
|
| Array | Represents an Array.
|
| BitArray | Represents a BitArray. This type is non generic.
|
| ArrayList | Represents an ArrayList. This type is non generic.
|
| Queue | Represents a Queue. This type is non generic.
|
| Stack | Represents a Stack. This type is non generic.
|
| Hashtable | Represents a Hashtable. This type is non generic.
|
| SortedList | Represents a SortedList. This type is non generic.
|
| Dictionary | Represents a Dictionary. This type is non generic.
|
| ListDictionary | Represents a ListDictionary. This type is non generic.
|
| IList | Represents an IList. This interface type is non generic.
|
| ICollection | Represents an ICollection. This interface type is non generic.
|
| IDictionary | Represents an IDictionary. This interface type is non generic.
|
| IEnumerable | Represents an IEnumerable. This interface type is non generic.
|
| Custom | Represents a custom implementation of IEnumerable.
|
| GenericList | Represents a List<T>.
|
| GenericLinkedList | Represents a LinkedList<T>.
|
| GenericCollection | Represents a Collection<T>.
|
| GenericQueue | Represents a Queue<T>.
|
| GenericStack | Represents a Stack<T>.
|
| GenericHashSet | Represents a HashSet<T>.
|
| GenericSortedList | Represents a SortedList<TKey,TValue>.
|
| GenericDictionary | Represents a Dictionary<TKey,TValue>.
|
| GenericSortedDictionary | Represents a SortedDictionary<TKey, TValue>.
|
| GenericBlockingCollection | Represents a BlockingCollection<T>.
|
| GenericConcurrentDictionary | Represents a ConcurrentDictionary<TKey, TValue>.
|
| GenericConcurrentBag | Represents a ConcurrentBag<T>.
|
| GenericIList | Represents an IList<T>.
|
| GenericICollection | Represents an ICollection<T>.
|
| GenericIEnumerable | Represents an IEnumerable<T>.
|
| GenericIDictionary | Represents an IDictionary<TKey, TValue>.
|
| GenericICollectionKeyValue | Represents an <cref>ICollection{KeyValuePair{TKey, TValue}}</cref>
.
|
| GenericIEnumerableKeyValue | Represents an <cref>IEnumerable{KeyValuePair{TKey, TValue}}</cref>
.
|
| GenericCustom | Represents a custom implementation of IEnumerable<T>.
|