Select from following answers:- Stop
- Suspend
- Kill
- None of these.
- All Above
Kill method is used to stop any process which are being run in background.
Process process = Process.Start("calc.exe");
Thread.Sleep(1000);
process.Kill();
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator