How to check if the system has AMD or NVIDIA in C#?
问题 I'm trying to make an Ethereum mining client using C#, and I need to check whether the system has AMD or NVIDIA. This is because the program needs to know whether it should mine Ethereum via CUDA or OpenCL. 回答1: You need to use System.Management Namespace (You can find under references/Assemblies) After adding namespace you need to navigate all properties of ManagementObject and navigate all properties of propertydata till founding description on name property. I wrote this solution for