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 RemoveRange<T>(this List<T>, IEnumerable<T>)Declarationpublic static void RemoveRange<T>(
this List<T> list,
IEnumerable<T> values
)Summary
Removes several values from a List<T>. Generic type parameters| T |
Type of the elements in the list. |
Parameters| this List<T> | list |
The list to remove the items from. | | IEnumerable<T> | values |
Values to remove. |
|