CodeCatchClauseCollection.Insert(Int32, CodeCatchClause) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 CodeCatchClause 对象插入集合中指定的索引位置。
public:
void Insert(int index, System::CodeDom::CodeCatchClause ^ value);
public void Insert (int index, System.CodeDom.CodeCatchClause value);
member this.Insert : int * System.CodeDom.CodeCatchClause -> unit
Public Sub Insert (index As Integer, value As CodeCatchClause)
参数
- index
- Int32
从零开始的索引,应在此处插入指定对象。
- value
- CodeCatchClause
要插入的 CodeCatchClause 对象。
示例
以下示例演示如何使用 Insert 方法将 对象添加到 CodeCatchClauseCodeCatchClauseCollection。
// Inserts a CodeCatchClause at index 0 of the collection.
collection->Insert( 0, gcnew CodeCatchClause( "e" ) );
// Inserts a CodeCatchClause at index 0 of the collection.
collection.Insert( 0, new CodeCatchClause("e") );
' Inserts a CodeCatchClause at index 0 of the collection.
collection.Insert(0, New CodeCatchClause("e"))