Is it possible in .Net to get data on %% GPU load?
For example, the following code allows you to get averaged data on %% CPU utilization for the last second:
PerformanceCounter cpumonitor = new PerformanceCounter("Processor", "% Processor Time","_Total"); var CurCPULoad= cpucounter.NextValue().ToString() Is something similar for a GPU possible to get? (I didn’t find anything suitable in listing possible data sources for PerformanceCounter ... maybe I’ve looked at something ...)