I\'m trying to figure out how to gather the current usage percentage of each individual processor on my computer. If I use \"System.Environment.ProcessorCount;\" I can get
For the first processor, use
protected PerformanceCounter cpuCounter = new PerformanceCounter("processor", "% Processor Time", "0");
And so on, up to (Environment.ProcessorCount-1).ToString()