Class ListExtensions
Provides additional methods for working with List<T>.
Inherited Members
Namespace: Recore.Collections.Generic
Assembly: Recore.dll
Syntax
public static class ListExtensions
Methods
| Improve this Doc View SourceAppendRange<T>(List<T>, IEnumerable<T>)
Adds the elements of the specified collection to the end of the list and passes the list through.
Declaration
public static List<T> AppendRange<T>(this List<T> list, IEnumerable<T> collection)
Parameters
Type | Name | Description |
---|---|---|
List<T> | list | |
IEnumerable<T> | collection |
Returns
Type | Description |
---|---|
List<T> |
Type Parameters
Name | Description |
---|---|
T |