Other Compiler Instructions

suggest change

Line

#line controls the line number and filename reported by the compiler when outputting warnings and errors.

void Test()
{
    #line 42 "Answer"
    #line filename "SomeFile.cs"
    int life; // compiler warning CS0168 in "SomeFile.cs" at Line 42
    #line default
    // compiler warnings reset to default
}

Pragma Checksum

#pragma checksum allows the specification of a specific checksum for a generated program database (PDB) for debugging.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents