ParserErrorCollection.Insert(Int32, ParserError) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 ParserError 对象插入集合中指定的索引位置。
public:
void Insert(int index, System::Web::ParserError ^ value);
public void Insert (int index, System.Web.ParserError value);
member this.Insert : int * System.Web.ParserError -> unit
Public Sub Insert (index As Integer, value As ParserError)
参数
- index
- Int32
在集合中要插入 ParserError 的索引位置。
- value
- ParserError
要插入到集合中的 ParserError 对象。
示例
下面的代码示例演示如何在集合中的ParserErrorCollection指定索引处插入ParserError对象。
// Insert a ParserError at index 0 of the collection.
ParserError error = new ParserError("Error", "Path", 1);
collection.Insert(0, error);
// Remove the specified ParserError from the collection.
collection.Remove(error);
' Insert a ParserError at index 0 of the collection.
Dim [error] As New ParserError("Error", "Path", 1)
collection.Insert(0, [error])
' Remove the specified ParserError from the collection.
collection.Remove([error])
注解
使用该方法在 Insert 集合中的特定索引处插入现有 ParserError 对象。
不能多次将同一 ParserError 对象添加到集合中。 使用ParserError集合中已有的方法调用Insert该方法时,插入将失败。 Contains在插入前使用该方法来确定某个特定ParserError项是否已在集合中。 若要在集合中重新定位, ParserError 必须先使用 Remove 该方法将其删除,然后使用该方法将其插入到所需索引 Insert处。