Sdílet prostřednictvím


CodeStatementCollection.Insert(Int32, CodeStatement) Metoda

Definice

Vloží zadaný CodeStatement objekt do kolekce v zadaném indexu.

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

Index založený na nule, do kterého by měl být vložen zadaný objekt.

value
CodeStatement

Objekt CodeStatement , který chcete vložit.

Příklady

Následující příklad ukazuje, jak použít metodu Insert k přidání objektu CodeStatement do objektu 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"))

Platí pro

Viz také