[This is preliminary documentation and is subject to change.]

Adds the elements of the specified collection to the specified generic IList.

Namespace:  Facebook.Json.Utilities
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public static void AddRange<T>(
	this IList<T> initial,
	IEnumerable<T> collection
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Sub AddRange(Of T) ( _
	initial As IList(Of T), _
	collection As IEnumerable(Of T) _
)
Visual C++
[ExtensionAttribute]
public:
generic<typename T>
static void AddRange(
	IList<T>^ initial, 
	IEnumerable<T>^ collection
)

Parameters

initial
Type: System.Collections.Generic..::.IList<(Of <(T>)>)
The list to add to.
collection
Type: System.Collections.Generic..::.IEnumerable<(Of <(T>)>)
The collection of elements to add.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Facebook.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})"]

See Also

CollectionUtils Class
AddRange Overload
Facebook.Json.Utilities Namespace