CodeCommentStatementCollection.Insert(Int32, CodeCommentStatement) Método

Definição

Insere um objeto CodeCommentStatement na coleção no índice especificado.

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

Parâmetros

index
Int32

O índice baseado em zero no qual o item deve ser inserido.

value
CodeCommentStatement

O objeto CodeCommentStatement a ser inserido.

Exemplos

O exemplo a seguir demonstra como usar o Insert método para adicionar um CodeCommentStatement objeto ao CodeCommentStatementCollection.

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

Aplica-se a

Confira também