次の方法で共有


OperationCollection.Insert(Int32, Operation) メソッド

定義

指定した 0 から始まるインデックス番号にある Operation に、指定した OperationCollection を追加します。

public:
 void Insert(int index, System::Web::Services::Description::Operation ^ operation);
public void Insert (int index, System.Web.Services.Description.Operation operation);
member this.Insert : int * System.Web.Services.Description.Operation -> unit
Public Sub Insert (index As Integer, operation As Operation)

パラメーター

index
Int32

operation パラメーターを挿入する位置の、0 から始まるインデックス番号。

operation
Operation

コレクションに追加する Operation

Insert メソッドの使用例を次に示します。

myOperationCollection->Remove( myOperation );

// Insert the 'myOpearation' operation at the index '0'.
myOperationCollection->Insert( 0, myOperation );
Console::WriteLine( "The operation at index '0' is : {0}", myOperationCollection[ 0 ]->Name );
myOperationCollection.Remove(myOperation);
// Insert the 'myOpearation' operation at the index '0'.
myOperationCollection.Insert(0, myOperation);
Console.WriteLine("The operation at index '0' is : " +
                  myOperationCollection[0].Name);
myOperationCollection.Remove(myOperation)
' Insert the 'myOpearation' operation at the index '0'.
myOperationCollection.Insert(0, myOperation)
Console.WriteLine("The operation at index '0' is : " + _
                  myOperationCollection.Item(0).Name)

注釈

コレクション内の項目の数が既にコレクションの容量と等しい場合、新しい要素が挿入される前に内部配列を自動的に再割り当てすることで、容量が 2 倍になります。

パラメーターが index 等しい Count場合は、パラメーターが operation > の OperationCollection末尾に追加されます。

挿入ポイントの後の要素は、新しい要素に合わせて下に移動します。

適用対象