How to get the instance of a running process before it terminates ?
C#
3
Posts
2
Posters
0
Views
1
Watching
-
hi All, I want to know How to get the instance of a running process before it terminates ? Thanx
-
hi All, I want to know How to get the instance of a running process before it terminates ? Thanx
-
System.Diagnostics.Process.GetProcessById(ProcessID);
orSystem.Diagnostics.Process.GetProcessesByName(ProcessName);
thanx