VelocityDbListTInsertRange Method |
Inserts the elements of the given collection at a given index.
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public void InsertRange(
int index,
IEnumerable<T> collection
)
Public Sub InsertRange (
index As Integer,
collection As IEnumerable(Of T)
)
public:
void InsertRange(
int index,
IEnumerable<T>^ collection
)
member InsertRange :
index : int *
collection : IEnumerable<'T> -> unit
Parameters
- index
- Type: SystemInt32
start insert at this index - collection
- Type: System.Collections.GenericIEnumerableT
to be inserted
See Also