Aracılığıyla paylaş


CompilerErrorCollection.Add(CompilerError) Yöntem

Tanım

Belirtilen CompilerError nesneyi hata koleksiyonuna ekler.

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

Parametreler

value
CompilerError

CompilerError Eklenecek nesne.

Döndürülenler

Yeni öğenin eklendiği dizin.

Örnekler

Aşağıdaki örnekte yöntemi kullanılarak Add nesnesine CompilerErrorCompilerErrorCollectionnasıl ekleneceği gösterilmektedir.

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

Şunlara uygulanır

Ayrıca bkz.