06
JUL
How to check if a process is using dotnet
As we all know, we can get information about the processes in the system simply by using the methods provided by the Process class in the System.Diagnostics namespace. For example, you can get all processes by Process.GetProcesses() and all processes by the specified name by Process.GetProcessesByName(). But how do we know if the process is using dotnet or was created by dotnet? Here are three …