Start/Exit Method
// Get the parameters/arguments passed to program if any
string arguments = string.Empty;
string[] args = Environment.GetCommandLineArgs();
for (int i = 1; i < args.Length; i++) // args[0] is always exe path/filename
arguments += args[i] + " ";
// Restart current application, with same arguments/parameters
Application.Exit();
System.Diagnostics.Process.Start(Application.ExecutablePath, arguments);
This seems to work better than Application.Restart();
Not sure how this handles if your program protects against multiple instance. Perhaps this change to the second part would handle that case?:
Application.Exit();
System.Threading.Thread.Sleep(5000);
System.Diagnostics.Process.Start(Application.ExecutablePath, arguments);
My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.
