重启程序

来源:互联网 发布:fifa online 3数据库 编辑:程序博客网 时间:2024/06/06 05:27
        
/// <summary>        /// 重启程序        /// </summary>        private void Restart()        {            Application.ExitThread();            Thread thtmp = new Thread(new ParameterizedThreadStart(run));            object appName = Application.ExecutablePath;            Thread.Sleep(500);            thtmp.Start(appName);        }        private void run(Object obj)        {            Process ps = new Process();            ps.StartInfo.FileName = obj.ToString();            ps.Start();        }

原创粉丝点击