DataCollection<T>.AddRange Method (IEnumerable<T>)
Applies To: Dynamics CRM 2015
Adds the elements of the specified collection to the end of the DataCollection.
Namespace: Microsoft.Xrm.Sdk
Assembly: Microsoft.Xrm.Sdk (in Microsoft.Xrm.Sdk.dll)
Syntax
public void AddRange(
IEnumerable<T> items
)
public:
void AddRange(
IEnumerable<T>^ items
)
member AddRange :
items:IEnumerable<'T> -> unit
Public Sub AddRange (
items As IEnumerable(Of T)
)
Parameters
items
Type: System.Collections.Generic.IEnumerable<T>Type: IEnumerable<T>. The collection whose elements should be added to the end of the DataCollection<T>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.
Remarks
This method extends the base Collection class to add List.AddRange functionality.
See Also
AddRange Overload
DataCollection<T> Class
Microsoft.Xrm.Sdk Namespace
Return to top
© 2016 Microsoft. All rights reserved. Copyright