Build up a list of the running processes : Process « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Process
Build up a list of the running processes
using System;
using System.Collections.Generic;
using System.Diagnostics;
class MainClass {
static void Main() {
List<String> processes = new List<String>();
foreach (Process process in Process.GetProcesses())
processes.Add(process.ProcessName);
}
}
Related examples in the same category