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"))