1.情景
有些时候,系统会出问题,问题原因很难排除,但是重启问题就能修正,这时候我们就需要在一个检测到问题的时机,让系统进行一次重启。
2.代码
using System;
using System.Windows.Forms;namespace 程序重启自己
{public partial class Form1 : Form{public Form1(){InitializeComponent();}private void 重启_Click(object sender, EventArgs e){System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location);Application.Exit();}}
}
3.运行效果