Udostępnij za pośrednictwem


CodeStatementCollection.Insert(Int32, CodeStatement) Metoda

Definicja

Wstawia określony CodeStatement obiekt do kolekcji w określonym indeksie.

public:
 void Insert(int index, System::CodeDom::CodeStatement ^ value);
public void Insert (int index, System.CodeDom.CodeStatement value);
member this.Insert : int * System.CodeDom.CodeStatement -> unit
Public Sub Insert (index As Integer, value As CodeStatement)

Parametry

index
Int32

Indeks oparty na zerze, w którym należy wstawić określony obiekt.

value
CodeStatement

Obiekt CodeStatement do wstawienia.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą Insert metody dodać CodeStatement obiekt do obiektu CodeStatementCollection.

// Inserts a CodeStatement at index 0 of the collection.
collection->Insert( 0, gcnew CodeCommentStatement( "Test comment statement" ) );
// Inserts a CodeStatement at index 0 of the collection.
collection.Insert( 0, new CodeCommentStatement("Test comment statement") );
' Inserts a CodeStatement at index 0 of the collection.
collection.Insert(0, New CodeCommentStatement("Test comment statement"))

Dotyczy

Zobacz też