摘要: 1)将包含多个类型的源代码文件生成为一个可以部署的文件先看下面代码:View Code 1 public sealed class Program {2 public static void Main() {3 System.Console.WriteLine("Hi");4 }5 }为了演示命令,将上述代码放在SimpleProgram.cs中,然后再vs命令行中执行命名:csc.exe /out:SimpleProgram.exe /t:exe /r:MSCorLib.dll SimpleProgram.cs提示:/out:SimpleProgram.exe 默认路.. 阅读全文
posted @ 2011-11-23 13:39 UnhandleException 阅读(370) 评论(0) 推荐(1) 编辑