BaseCollection.InsertRange Method (Int32, Object[])
Inserts an array of items into the collection at the specified index.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
protected void InsertRange(
int index,
object[] items
)
protected:
void InsertRange(
int index,
array<Object^>^ items
)
member InsertRange :
index:int *
items:Object[] -> unit
Protected Sub InsertRange (
index As Integer,
items As Object()
)
Parameters
index
Type: System.Int32The zero-based index that specifies where to insert the array of items.
items
Type: System.Object[]The array of items to insert into the collection.
See Also
BaseCollection Class
Microsoft.ManagementConsole Namespace
Return to top