WeakReferenceListTInsertRange 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)
Syntaxpublic override void InsertRange(
	int index,
	IEnumerable<T> collection
)
Public Overrides Sub InsertRange ( 
	index As Integer,
	collection As IEnumerable(Of T)
)
public:
virtual void InsertRange(
	int index, 
	IEnumerable<T>^ collection
) override
abstract InsertRange : 
        index : int * 
        collection : IEnumerable<'T> -> unit 
override 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