vote up 0 vote down star
1

I was looking a lot for method to get parent process in .NET, but found only P/Invoke way.

flag

74% accept rate
1  
What happens when multiple instances of your process are running, since they'll all have the same ProcessName? – Michael Burr Dec 27 '08 at 8:55

2 Answers

vote up 2 vote down check

Here is managed way:

using System.Diagnostics;

var pc = new PerformanceCounter("Process",
   "Creating Process ID",
   Process.GetCurrentProcess().ProcessName);

return Process.GetProcessById((int)pc.NextValue());
link|flag
vote up 0 vote down

Is this actually a question? Using the System.Management namespace could work too. Run a WMI query using the Win32_Process to get the ParentProcessId, then Process.GetProcessById().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.