摘要: 1. System.Environment and System.Console 1: public class Program 2: { 3: private static void Main() 4: { 5: Console.ForegroundColor = ConsoleColor.DarkGreen; 6: 7: string[] aArgs = Environment.GetCommandLineArgs(); 8: foreach (string aArg in aArgs) 9: { 10: Console.WriteLine("Command Line Args 阅读全文
posted @ 2010-01-22 15:29 FangwenYu 阅读(348) 评论(0) 推荐(0) 编辑