Adds all items in the enumeration to this collection

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public void AddRange(
	IEnumerable<T> items
)
Visual Basic
Public Sub AddRange ( 
	items As IEnumerable(Of T)
)
Visual C++
public:
void AddRange(
	IEnumerable<T>^ items
)
F#
member AddRange : 
        items : IEnumerable<'T> -> unit 

Parameters

items
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'T>)>)>
The items to be added

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThrown if items or one of its members is null.

See Also