다음을 통해 공유


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

항목을 삽입할 인덱스이며 0부터 시작합니다.

value
CodeCommentStatement

삽입할 CodeCommentStatement 개체입니다.

예제

다음 예제에서는 사용 Insert 하는 방법에 설명 합니다 에 개체를 추가 하는 메서드입니다 CodeCommentStatementCodeCommentStatementCollection.

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

적용 대상

추가 정보