다음을 통해 공유


CodeCommentStatementCollection.Add(CodeCommentStatement) 메서드

정의

지정된 CodeCommentStatement 개체를 컬렉션에 추가합니다.

public:
 int Add(System::CodeDom::CodeCommentStatement ^ value);
public int Add (System.CodeDom.CodeCommentStatement value);
member this.Add : System.CodeDom.CodeCommentStatement -> int
Public Function Add (value As CodeCommentStatement) As Integer

매개 변수

value
CodeCommentStatement

추가할 CodeCommentStatement 개체입니다.

반환

새 요소가 삽입된 인덱스입니다.

예제

다음 예제에서는 개체를 instance 추가하는 CodeCommentStatementCodeCommentStatementCollection 방법을 보여 줍니다.

// Adds a CodeCommentStatement to the collection.
collection->Add( gcnew CodeCommentStatement( "Test comment" ) );
// Adds a CodeCommentStatement to the collection.
collection.Add( new CodeCommentStatement("Test comment") );
' Adds a CodeCommentStatement to the collection.
collection.Add(New CodeCommentStatement("Test comment"))

적용 대상

추가 정보