共用方式為


ServiceDescriptionFormatExtensionCollection.Insert(Int32, Object) 方法

定義

加入指定的 ServiceDescriptionFormatExtensionServiceDescriptionFormatExtensionCollection,於指定的以零起始的索引位置。

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)

參數

index
Int32

以零起始的索引,extension 參數要在此處插入。

extension
Object

要加入至集合的 ServiceDescriptionFormatExtension

例外狀況

index 參數小於零。

-或-

index 參數大於 Count

範例

// 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.")

備註

如果集合中的專案數目已經等於集合的容量,則會在插入新元素之前自動重新配置內部陣列,將容量加倍。

index如果 參數等於 Count ,則會 extension 將 參數新增至 的 ServiceDescriptionFormatExtensionCollection 結尾。

插入點後的專案會向下移動以容納新的元素。

適用於