Mega Code Archive

 
Categories / C# Tutorial / Development
 

Get all processes running on the local computer

using System; using System.Diagnostics; using System.ComponentModel;     class MyProcess     {         static void Main()         {             Process [] localAll = Process.GetProcesses();         }         }