Condividi tramite


CompilerErrorCollection.Remove(CompilerError) Metodo

Definizione

Rimuove dall'insieme un oggetto CompilerError specifico.

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)

Parametri

value
CompilerError

Oggetto CompilerError da rimuovere da CompilerErrorCollection.

Eccezioni

Impossibile trovare l'oggetto specificato nell'insieme.

Esempio

Nell'esempio seguente viene illustrato come rimuovere un CompilerError elemento da un oggetto 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])

Si applica a