次の方法で共有


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

次のコード例では、オブジェクト内の指定したインデックスから a ParserError を削除する方法を ParserErrorCollection 示します。

// 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削除します。

適用対象