CodeCatchClauseCollection.Add(CodeCatchClause) メソッド

定義

指定した CodeCatchClause オブジェクトをコレクションに追加します。

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

パラメーター

value
CodeCatchClause

追加する CodeCatchClause オブジェクト。

戻り値

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

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

// Adds a CodeCatchClause to the collection.
collection->Add( gcnew CodeCatchClause( "e" ) );
// Adds a CodeCatchClause to the collection.
collection.Add( new CodeCatchClause("e") );
' Adds a CodeCatchClause to the collection.
collection.Add(New CodeCatchClause("e"))

適用対象

こちらもご覧ください