Hi everyone.
I’m scripting in C# and I would like to know if there is a way to kill my application. Like a Process.Kill(); .
I didn’t find the solution.
Thanks a lot !
Hi everyone.
I’m scripting in C# and I would like to know if there is a way to kill my application. Like a Process.Kill(); .
I didn’t find the solution.
Thanks a lot !
Application.Quit.
–Eric
thanks Eric but I would like another function. Something more rude Like CTRL ALT DEL command.
Why don’t you just use ctrl alt del then, if you want to for some reason? Unity has Application.Quit, nothing else.
–Eric
Why? What problem are you trying to solve?
Yeah why do you need this? Killing process task manager style is unsafe overall. Well not unsafe, but it can lead to undesired problems.
Hello. Did you get your answer? I also need to kill the process
You’d better search for a solution to the problem(s) that make your application not to quit normally. Or use Ctrl+Alt+Del, as mentioned.