CompilerErrorCollection.Insert(Int32, CompilerError) Metod

Definition

Infogar den angivna CompilerError i samlingen vid det angivna indexet.

public:
 void Insert(int index, System::CodeDom::Compiler::CompilerError ^ value);
public void Insert(int index, System.CodeDom.Compiler.CompilerError value);
member this.Insert : int * System.CodeDom.Compiler.CompilerError -> unit
Public Sub Insert (index As Integer, value As CompilerError)

Parametrar

index
Int32

Det nollbaserade index där kompilatorfelet ska infogas.

value
CompilerError

Infoga CompilerError .

Exempel

I följande exempel visas hur du använder Insert metoden för att infoga ett CompilerError objekt i en CompilerErrorCollection.

// Inserts a CompilerError at index 0 of the collection.
collection.Insert( 0, new CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text") );
' Inserts a CompilerError at index 0 of the collection.
collection.Insert(0, New CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text"))

Gäller för

Se även