02 2010 档案
CSC编译命令
摘要:编译 File.cs 以产生 File.exe: csc File.cs 编译 File.cs 以产生 File.dll: csc /target:library File.cs编译 File.cs 并创建 My.exe: csc /out:My.exe File.cs通过使用优化和定义 DEBUG 符号,编译当前目录中所有的 C# 文件。输出为 File2.exe: csc /define:DE... 阅读全文
posted @ 2010-02-10 22:37 sprite_bx 阅读(393) 评论(0) 推荐(0)