重启1,有时会报错
System.Windows.Forms.Application.Restart();
重启2,稳定
public void Restart()
{
//开启新的实例
Process.Start(Application.ExecutablePath);
//关闭当前实例
Process.GetCurrentProcess().Kill();
}
Application.Exit();//退出当前项目,如果是子项目,则不会停止主项目
System.Environment.Exit(0);//停止所有项目