RunPress(Application.StartupPath + @"\mine.exe",null,false); 
//kill itself
Process current = Process.GetCurrentProcess();
current.Kill();  我在应用中RunPress启动一个exe,然后杀死自己.但是本身必须要等mine.exe结束才能结束自己.
请问怎么能启动mine.exe后就结束自己,不要等待?private void RunPress(string PressInfo,string PressArg,bool IsWait)
{
try
{
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo(PressInfo);
info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
System.Diagnostics.Process pr = new Process();
pr.StartInfo = info;
pr.StartInfo.Arguments = PressArg; 
pr.Start();
pr.WaitForExit();
pr.Close();
}
catch(Exception ex)
{
WriteFileLog(logFilepath,ex.Message);           
throw ex;
}
}