ServiceDescriptionFormatExtensionCollection.Insert(Int32, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified ServiceDescriptionFormatExtension to the ServiceDescriptionFormatExtensionCollection at the specified zero-based index.
public:
void Insert(int index, System::Object ^ extension);
public void Insert (int index, object extension);
member this.Insert : int * obj -> unit
Public Sub Insert (index As Integer, extension As Object)
Parameters
- index
- Int32
The zero-based index at which to insert the extension
parameter.
- extension
- Object
The ServiceDescriptionFormatExtension to add to the collection.
Exceptions
Examples
// Insert 'MyFormatExtension' object.
myCollection->Insert( 0, myFormatExtensionObject );
Console::WriteLine( "'myFormatExtensionObject' is inserted to collection." );
// Insert 'MyFormatExtension' object.
myCollection.Insert(0,myFormatExtensionObject);
Console.WriteLine("'myFormatExtensionObject' is inserted to collection.");
' Insert 'MyFormatExtension' object.
myCollection.Insert(0, myFormatExtensionObject)
Console.WriteLine("'myFormatExtensionObject' is inserted to collection.")
Remarks
If the number of items in the collection already equals the collection's capacity, the capacity is doubled by automatically reallocating the internal array before the new element is inserted.
If the index
parameter is equal to Count, the extension
parameter is added to the end of the ServiceDescriptionFormatExtensionCollection.
The elements after the insertion point move down to accommodate the new element.
Applies to
.NET