Sdílet prostřednictvím


OperationCollection.Insert(Int32, Operation) Metoda

Definice

Přidá zadané Operation do zadaného indexu založeného na OperationCollection nule.

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)

Parametry

index
Int32

Index založený na nule, do kterého chcete vložit operation parametr.

operation
Operation

Přidání Operation do kolekce

Příklady

Následující příklad ukazuje použití Insert metody.

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)

Poznámky

Pokud se počet položek v kolekci už rovná kapacitě kolekce, kapacita se zdvojnásobí tím, že před vložením nového prvku automaticky přeloží interní pole.

index Pokud je parametr roven Count, operation parametr se přidá na konec OperationCollection.

Prvky za kurzorem se přesunou dolů, aby se přizpůsobily novému prvku.

Platí pro