November 2001
Beginner to intermediate
816 pages
16h 3m
English
/doc:<filename> Produces XML documentation for appropriately formatted XML comments in the code.
csc /doc:aProgDocs.xml aProg.cs
/out:<filename> Specifies the name of an output file.
csc /out:greatprogram.exe aProg.cs
/target:<exe|library|module|winexe> Specifies the type of file to be generated. Options are exe for an executable, library for a dll, module for a non-executable module, and winexe for a windows forms program. The default is exe.
csc /target:library /out:musthaveutils.dll aLib.cs
Read now
Unlock full access