Adds a collection of items to this collection
Namespace: BrightstarDB.EntityFrameworkAssembly: 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
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | Thrown if items is null or one of its members is null. |