Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 989 Bytes

File metadata and controls

40 lines (27 loc) · 989 Bytes

CollectionsExtensions.RemoveRange method (1 of 2)

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

See Also


CollectionsExtensions.RemoveRange<T> method (2 of 2)

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

See Also