using System;
using System.Diagnostics;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
Process[] processes = Process.GetProcesses();
foreach (var process in processes)
Console.WriteLine(process);
}
}
}
/*
run:
System.Diagnostics.Process (AdblockPlusEngine)
System.Diagnostics.Process (firefox)
System.Diagnostics.Process (ConsoleApplication_C_Sharp)
System.Diagnostics.Process (explorer)
System.Diagnostics.Process (iexplore)
System.Diagnostics.Process (notepad++)
...
*/