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 AddRange<T>(this HashSet<T>, IEnumerable<T>)Declarationpublic static void AddRange<T>(
this HashSet<T> set,
IEnumerable<T> values
)Summary
Adds several values into a HashSet<T>. Generic type parameters| T |
Type of the elements in the hash set. |
Parameters| this HashSet<T> | set |
The set to add the items to. | | IEnumerable<T> | values |
Values to add. |
|