如何让程序重启自己

时间:2014-05-18 06:15:10

标签: c#

尝试通过程序中的按钮单击重新启动程序,并尝试使用" restart()"和"重新创建()"不存在知道什么代码可以工作吗?

1 个答案:

答案 0 :(得分:1)

你可以这样做:

System.Windows.Forms.Application.Restart();  // it does exist...
Application.Current.Shutdown(); // If you are using WPF, otherwise see below...

使用Application.Exit()this.Close()作为Windows窗体应用程序中的第二行。