[C#基礎]-C#實做『C++的system("pasue");』功能
本篇要分享C#實做『C++的system("pasue");』功能範例,有興趣的同好,歡迎來一下哈哈 ^ ^。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics;
namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.Write("Press any key to continue . . . "); Console.ReadKey(true); } } }
|
沒有留言:
張貼留言