I need a System and hardware information library written with .net/C#. I am developing an application like Process Explorer. Do you know opensource projectlike this ?
network bandwith, Cpu/Ram usage, Hdd free space, process control, ..
Best Regards.
Much of the information you need, you can get from the
ManagementObjectSearcher
-class.Like this
That would give you an
IEnumerable<>
of the anonymous type, which contains the properties of all disks your computer has.Check this:
http://msdn.microsoft.com/en-us/library/system.management.managementobjectsearcher.aspx