От: | Odi$$ey | http://malgarr.blogspot.com/ | |
Дата: | 11.03.06 10:47 | ||
Оценка: | 21 (4) | ||
#Имя: | FAQ.dotnet.runslist |
using System.Diagnostics;
using System;
class Program
{
static void Test()
{
PerformanceCounterCategory clr = new PerformanceCounterCategory(".NET CLR Memory");
foreach(string process in clr.GetInstanceNames())
{
if(process != "_Global_")
{
Console.WriteLine(process);
}
}
}
}