📜  c# 保持控制台打开 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:43.711000             🧑  作者: Mango

代码示例1
//Put a Console.Read() as the last line in your program. 
//That will prevent it from closing until you press a key

Console.Read();