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