CodeCatchClauseCollection コンストラクター

定義

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

オーバーロード

CodeCatchClauseCollection()

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

CodeCatchClauseCollection(CodeCatchClause[])

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

CodeCatchClauseCollection(CodeCatchClauseCollection)

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

CodeCatchClauseCollection()

ソース:
CodeCatchClauseCollection.cs
ソース:
CodeCatchClauseCollection.cs
ソース:
CodeCatchClauseCollection.cs

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

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

適用対象

CodeCatchClauseCollection(CodeCatchClause[])

ソース:
CodeCatchClauseCollection.cs
ソース:
CodeCatchClauseCollection.cs
ソース:
CodeCatchClauseCollection.cs

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

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

パラメーター

value
CodeCatchClause[]

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

例外

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

適用対象

CodeCatchClauseCollection(CodeCatchClauseCollection)

ソース:
CodeCatchClauseCollection.cs
ソース:
CodeCatchClauseCollection.cs
ソース:
CodeCatchClauseCollection.cs

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

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

パラメーター

value
CodeCatchClauseCollection

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

例外

valuenull です。

適用対象