0
how to restart console app in c#
what is easiest an fastest way to do it
1 Respuesta
+ 1
Process.Start(/*path*/);
Environment.Exit(0);
To close it entirely
Or
Main(""); //usually require string, though you can delete those argument it won't be problem
in a way to restart all code.