Getting the total number of processors a computer has (c#)
- by mbcrump
Here is a code snippet for getting the total number of processors a computer has without using Environment.ProcessorCount. I found out that Environment.ProcessorCount is not necessary returning the correct value on some Intel based CPU’s. using System; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; …