编辑一下程序然后 手动打开EXE 能实现 自己关闭自己接着打开自己
private void button1_Click(object sender, EventArgs e) { Close(); string s = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; System.Diagnostics.Process.Start(s); }