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 オブジェクト。

戻り値

新しい要素が挿入された位置のインデックス。

次の例では、 オブジェクトをインスタンスに追加 CodeCommentStatement する方法を CodeCommentStatementCollection 示します。

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

適用対象

こちらもご覧ください