Removes a collection of items of a given IList.
public static IList RemoveRange(this IList src, IEnumerable items)| parameter | description |
|---|---|
| src | Source collection |
| items | Items to remove |
- class CollectionsExtensions
- namespace Wokhan.Collections.Generic.Extensions
Removes a collection of items from another collection
public static ICollection<T> RemoveRange<T>(this ICollection<T> src, IEnumerable<T> items)| parameter | description |
|---|---|
| T | |
| src | Source collection |
| items | The items to remove |
- class CollectionsExtensions
- namespace Wokhan.Collections.Generic.Extensions