CompilerErrorCollection::Add Method (CompilerError^)

 

Adds the specified CompilerError object to the error collection.

Namespace:   System.CodeDom.Compiler
Assembly:  System (in System.dll)

public:
int Add(
	CompilerError^ value
)

Parameters

value
Type: System.CodeDom.Compiler::CompilerError^

The CompilerError object to add.

Return Value

Type: System::Int32

The index at which the new element was inserted.

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

.NET Framework
Available since 1.1
Return to top
Show: