Поделиться через


CodeCommentStatementCollection.Insert(Int32, CodeCommentStatement) Метод

Определение

Вставляет объект CodeCommentStatement в коллекцию по указанному индексу.

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)

Параметры

index
Int32

Индекс, отсчитываемый от нуля, по которому следует вставить элемент.

value
CodeCommentStatement

Вставляемый объект CodeCommentStatement.

Примеры

В следующем примере показано, как использовать Insert метод для добавления CodeCommentStatement объекта в 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"))

Применяется к

См. также раздел