CompilerErrorCollection.Remove(CompilerError) Methode

Definition

Entfernt eine bestimmte CompilerError-Klasse aus der Auflistung.

public:
 void Remove(System::CodeDom::Compiler::CompilerError ^ value);
public void Remove (System.CodeDom.Compiler.CompilerError value);
member this.Remove : System.CodeDom.Compiler.CompilerError -> unit
Public Sub Remove (value As CompilerError)

Parameter

value
CompilerError

Der CompilerError, der aus der CompilerErrorCollection entfernt werden soll.

Ausnahmen

Das angegebene Objekt wurde nicht in der Auflistung gefunden.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie ein CompilerError Element aus einem CompilerErrorCollectionentfernt wird.

// Removes the specified CompilerError from the collection.
CompilerError^ error = gcnew CompilerError( "Testfile.cs",5,10,"CS0001","Example error text" );
collection->Remove( error );
// Removes the specified CompilerError from the collection.
CompilerError error = new CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text");
collection.Remove( error );
' Removes the specified CompilerError from the collection.
Dim [error] As New CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text")
collection.Remove([error])

Gilt für: