RSS

How do I – Get A Process ID in C#


Got this question recently… answer is by simply using the System.Diagnostics namespace…
System.Diagnostics.Process.GetProcessesByName("ProcessName")[0].Id;


Cheers
C

Post a Comment

Comments are moderated only for the purpose of keeping pesky spammers at bay.