Share via


CodeCommentStatementCollection コンストラクター

定義

CodeCommentStatementCollection クラスの新しいインスタンスを初期化します。

オーバーロード

CodeCommentStatementCollection()

CodeCommentStatementCollection クラスの新しいインスタンスを初期化します。

CodeCommentStatementCollection(CodeCommentStatement[])

CodeCommentStatementCollection オブジェクトの指定した配列を格納する CodeCommentStatement クラスの新しいインスタンスを初期化します。

CodeCommentStatementCollection(CodeCommentStatementCollection)

指定したソース コレクションの要素を格納する CodeCommentStatementCollection クラスの新しいインスタンスを初期化します。

CodeCommentStatementCollection()

ソース:
CodeCommentStatementCollection.cs
ソース:
CodeCommentStatementCollection.cs
ソース:
CodeCommentStatementCollection.cs

CodeCommentStatementCollection クラスの新しいインスタンスを初期化します。

public:
 CodeCommentStatementCollection();
public CodeCommentStatementCollection ();
Public Sub New ()

適用対象

CodeCommentStatementCollection(CodeCommentStatement[])

ソース:
CodeCommentStatementCollection.cs
ソース:
CodeCommentStatementCollection.cs
ソース:
CodeCommentStatementCollection.cs

CodeCommentStatementCollection オブジェクトの指定した配列を格納する CodeCommentStatement クラスの新しいインスタンスを初期化します。

public:
 CodeCommentStatementCollection(cli::array <System::CodeDom::CodeCommentStatement ^> ^ value);
public CodeCommentStatementCollection (System.CodeDom.CodeCommentStatement[] value);
new System.CodeDom.CodeCommentStatementCollection : System.CodeDom.CodeCommentStatement[] -> System.CodeDom.CodeCommentStatementCollection
Public Sub New (value As CodeCommentStatement())

パラメーター

value
CodeCommentStatement[]

コレクションを初期化するために使用する CodeCommentStatement オブジェクトの配列。

例外

配列内の 1 つ以上のオブジェクトが null です。

適用対象

CodeCommentStatementCollection(CodeCommentStatementCollection)

ソース:
CodeCommentStatementCollection.cs
ソース:
CodeCommentStatementCollection.cs
ソース:
CodeCommentStatementCollection.cs

指定したソース コレクションの要素を格納する CodeCommentStatementCollection クラスの新しいインスタンスを初期化します。

public:
 CodeCommentStatementCollection(System::CodeDom::CodeCommentStatementCollection ^ value);
public CodeCommentStatementCollection (System.CodeDom.CodeCommentStatementCollection value);
new System.CodeDom.CodeCommentStatementCollection : System.CodeDom.CodeCommentStatementCollection -> System.CodeDom.CodeCommentStatementCollection
Public Sub New (value As CodeCommentStatementCollection)

パラメーター

value
CodeCommentStatementCollection

コレクションを初期化するために使用する CodeCommentStatementCollection

例外

valuenull です。

適用対象