show/hide this revision's text 2 better answer; [made Community Wiki]

Try this instead:

Start/Exit Method

// restart 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 applicationSystem.Diagnostics.Process.Start(Application.ExecutablePath), 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.

show/hide this revision's text 1

Try this instead:

// restart the application
System.Diagnostics.Process.Start(Application.ExecutablePath);
Application.Exit();