[C#基礎]-C#實做『C++的system(“pasue”);』功能

[C#基礎]-C#實做『C++的system(“pasue”);』功能

[C#基礎]-C#實做『C++的system(“pause”);』功能

 

本篇要分享C#實做『C++的system(“pause”);』功能範例,有興趣的同好,歡迎來一下哈哈 ^ ^。

 

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);
}
}
}

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *