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 对象。

返回

新元素位置处插入的索引。

示例

以下示例演示如何将 对象添加到 CodeCatchClauseCodeCatchClauseCollection 实例。

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

适用于

另请参阅