1
vote
3answers
2k views
How do I restart my C# WinForm Application?
Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.
Application.Restart();
The above method has …
1
vote
How do I restart my C# WinForm Application?
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 < …
