November 2001
Beginner to intermediate
816 pages
16h 3m
English
/bugreport:<filename> Produces a file with information that can be submitted as a bug report. Information includes source code, command-line options, system information, and compiler output. The system will also prompt you for information, such as a bug description and advice on how to fix the bug.
csc /bugreport:myreport.txt aprog.cs
/checked[+|-] Controls runtime overflow checking.
csc /checked- aprog.cs
/debug[+|-] Generates debugging information in output files.
csc /debug aprog.cs
/fullpaths Shows the full path of files where errors and warnings occur.
csc /fullpaths aprog.cs
/nowarn:<error#>[,<error#>[. . .]] Turns off warning reporting on specified warning messages. Commas separate warning numbers.
csc /nowarn:108,109 aprog.cs ...
Read now
Unlock full access