Get<>(dict, key, defaultVal) Get<>(dict, key, defaultVal) Get<>(dict, key1, key2, defaultVal) IndexOfSubarray<>(sourceArray, findWhat, startIndex, sourceLength, comparer) Insert<>(array, startIndex, values) Insert<>(array, startIndex, value) Remove<>(array, startIndex, length) SubarrayEquals<>(sourceArray, sourceStartIndex, otherArray, otherStartIndex, length, comparer)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: void EnqueueRange<T>(this Queue<T>, IEnumerable<T>)Declarationpublic static void EnqueueRange<T>(
this Queue<T> queue,
IEnumerable<T> values
)Summary
Enqueues several values into a Queue<T>. Generic type parameters| T |
Type of the elements in the queue. |
Parameters| this Queue<T> | queue |
Queue to insert items into. | | IEnumerable<T> | values |
Values to enqueue. |
|