Version

InsertRange(Int32,ICollection) Method

Inserts the elements of a collection into this collection at the specified index.
Syntax
'Declaration
 
Public Overloads Overrides Sub InsertRange( _
   ByVal index As Integer, _
   ByVal c As ICollection _
) 
public override void InsertRange( 
   int index,
   ICollection c
)

Parameters

index
The zero-based index at which the new elements should be inserted.
c
The collection whose elements are inserted into this collection.
Remarks

This method both inserts the objects in c into the collection, and adds a reference to these objects in the ASP.NET web control heirarchy.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also