ParserErrorCollection.Remove(ParserError) 方法

定义

从集合中移除指定的 ParserError 对象。

public:
 void Remove(System::Web::ParserError ^ value);
public void Remove (System.Web.ParserError value);
member this.Remove : System.Web.ParserError -> unit
Public Sub Remove (value As ParserError)

参数

value
ParserError

要从该集合中移除的 ParserError

示例

下面的代码示例演示如何从对象中的ParserErrorCollection指定索引中删除 aParserError

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

注解

Remove当对集合有引用ParserError时,使用该方法从集合中删除ParserError对象。

适用于