Click or drag to resize
IListExtensionsAddRangeT Method
Appends one list to the end of the other.

Namespace: VirtualRadar.Interface
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void AddRange<T>(
	this IList<T> list,
	IEnumerable<T> range
)

Parameters

list
Type: System.Collections.GenericIListT
range
Type: System.Collections.GenericIEnumerableT

Type Parameters

T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IListT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also