csc /out:<文件名> /t:exe /r:<程序集> <要编译的文件>
说明:
/t[arget]:exe
/t[arget]:winexe
/t[arget]:library
/t[arget]:module //输出一个模块
/out:<文件名> //这里的输出文件由/t[arget]:* 来决定
//禁用 MsCorLib.dll 程序集
csc /out:<文件名> /t:exe /nostdlib <要编译的文件>
//将模块添加到程序集
csc /out:<文件名> /t:exe /addmodule:<模块名称> /r:<程序集> <要编译的文件>
===========================================================================
//编辑非托管(引用托管代码)代码
cl /clr <文件名>