Bagikan melalui


CompilerErrorCollection.Add(CompilerError) Metode

Definisi

Menambahkan objek yang ditentukan CompilerError ke kumpulan kesalahan.

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

Objek CompilerError yang akan ditambahkan.

Mengembalikan

Indeks tempat elemen baru disisipkan.

Contoh

Contoh berikut menunjukkan cara menggunakan Add metode untuk menambahkan CompilerError objek ke 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"))

Berlaku untuk

Lihat juga