当用户按下“R”时,我需要重新启动应用程序控制台。
我有这个
Console.WriteLine(message, "Rebuild Log Files"
+ " Press Enter to finish, or R to restar the program...");
string restar = Console.ReadLine();
if(restar.ToUpper() == "R")
{
//here the code to restart the console...
}
谢谢
最佳答案
我认为您真的不需要重新启动整个应用程序。只需在按R键后运行所需的方法即可。无需重新启动。