Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 533 Bytes

File metadata and controls

20 lines (14 loc) · 533 Bytes

EnumerableExtensions.AddAll<T> method

Add all specified items to a collection using a simple loop

public static void AddAll<T>(this ICollection<T> src, IEnumerable<T> newItems)
parameter description
T Items type
src Source collection
newItems Items to add

See Also