CodeCatchClauseCollection.Add(CodeCatchClause) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 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"))