Freigeben über


CompilerErrorCollection.Add(CompilerError) Methode

Definition

Fügt der Fehlerauflistung das angegebene CompilerError-Objekt hinzu.

public:
 int Add(System::CodeDom::Compiler::CompilerError ^ value);
public int Add (System.CodeDom.Compiler.CompilerError value);
member this.Add : System.CodeDom.Compiler.CompilerError -> int
Public Function Add (value As CompilerError) As Integer

Parameter

value
CompilerError

Das hinzuzufügende CompilerError-Objekt.

Gibt zurück

Der Index, an dem das neue Element eingefügt wurde.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie die Add -Methode verwendet wird, um einem -CompilerErrorCollectionObjekt ein CompilerError -Objekt hinzuzufügen.

// Adds a CompilerError to the collection.
collection->Add( gcnew CompilerError( "Testfile::cs",5,10,"CS0001","Example error text" ) );
// Adds a CompilerError to the collection.
collection.Add( new CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text") );
' Adds a CompilerError to the collection.
collection.Add(New CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text"))

Gilt für:

Weitere Informationen