C# 重启应用程序

时间:2021-04-13 14:40:57

      在我从应用程序的可视化界面里向xml里写入的时候我想立刻生效

C# 重启应用程序

    我可以借助以下的代码

this.Dispose();
System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location);
     第一句是关闭先前的界面,第二句是重新启动程序。如果没有第一句,则更新前的界面和更新后的界面都会显示。