Exit code of a process terminated with Process.Kill() , in C#
Posted
by Emil D
on Stack Overflow
See other posts from Stack Overflow
or by Emil D
Published on 2010-03-16T14:38:36Z
Indexed on
2010/03/16
18:11 UTC
Read the original article
Hit count: 550
If in my C# application, I am creating a child process that can either terminate normally, or start misbehaving, in which case I terminate it with a call to Process.Kill().However, I would like to know if the process has exited normally.I know I can get the error code of a terminated process, but what would be a normal exit code and what would signify that the process was killed?
© Stack Overflow or respective owner