Aracılığıyla paylaş


CodeCommentStatementCollection.Insert(Int32, CodeCommentStatement) Yöntem

Tanım

Belirtilen dizindeki koleksiyona bir CodeCommentStatement nesne ekler.

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)

Parametreler

index
Int32

Öğenin eklenmesi gereken sıfır tabanlı dizin.

Örnekler

Aşağıdaki örnekte, öğesine nesne CodeCommentStatement eklemek için yönteminin nasıl kullanılacağı Insert gösterilmektedirCodeCommentStatementCollection.

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

Şunlara uygulanır

Ayrıca bkz.