CompilerErrorCollection.Add(CompilerError) Method

Definition

Adds the specified CompilerError object to the error collection.

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

Parameters

value
CompilerError

The CompilerError object to add.

Returns

The index at which the new element was inserted.

Examples

The following example demonstrates how to use the Add method to add a CompilerError object to a CompilerErrorCollection.

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

Applies to

See also