Class CollectionExtensions
Extensions methods for working with collections
Inheritance
System.Object
CollectionExtensions
Namespace: Telerik.DataSource.Extensions
Assembly: Telerik.DataSource.dll
Syntax
public static class CollectionExtensions : Object
Methods
AddRange<T>(ICollection<T>, IEnumerable<T>)
Adds an enumerable collection to another collection.
Declaration
public static void AddRange<T>(this ICollection<T> instance, IEnumerable<T> collection)
Parameters
System.Collections.Generic.ICollection<T>
instance
the collection to add items to |
System.Collections.Generic.IEnumerable<T>
collection
the collection that will be added to the original collection |
Type Parameters
T
the type of the collections |