c# – 如何重新启动控制台应用程序?

前端之家收集整理的这篇文章主要介绍了c# – 如何重新启动控制台应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用户按“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后只需运行所需的方法.无需重新启动.
原文链接:https://www.f2er.com/csharp/94048.html

猜你在找的C#相关文章