BigListTGetEnumerator Method |
Enumerates all of the items in the list, in order. The item at index 0
is enumerated first, then the item at index 1, and so on. Usually, the
foreach statement is used to call this method implicitly.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
RemarksEnumerating all of the items in the list take time O(N), where
N is the number of items in the list. Using GetEnumerator() or foreach
is much more efficient than accessing all items by index.
See Also