CompilerErrorCollection.Remove(CompilerError) Method

Definition

Removes a specific CompilerError from the collection.

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)

Parameters

value
CompilerError

The CompilerError to remove from the CompilerErrorCollection.

Exceptions

The specified object is not found in the collection.

Examples

The following example demonstrates how to remove a CompilerError item from a CompilerErrorCollection.

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

Applies to