日期:2014-05-18 浏览次数:20980 次
static void Main(string[] args) { Console.WriteLine("hello tomorrow!"); Console.ReadKey(); }
------解决方案--------------------
加一句Console.ReadLine();,让他停在那,否则在调试环境下直接返回了,在外部运行是正常的(ctrl+F5)
------解决方案--------------------
因为你没加上Console.ReadKey();
CMD执行完了你的Console.WriteLine();之后就退出了..
所以需要加上一行Console.ReadKey();
等待输入之后再结束..
------解决方案--------------------
直接Ctrl+F5执行,就可以不加Console.ReadKey();~