Answer the question
In order to leave comments, you need to log in
How to find out the amount of video card memory?
So it does not show more than 4GB, since the number is 32 bit.
foreach (var obj in new ManagementObjectSearcher("select AdapterRAM from Win32_VideoController").Get())
{
var ram = obj.Properties["AdapterRAM"].ToString();
Console.WriteLine("Память: " + ram);
}
Answer the question
In order to leave comments, you need to log in
Nvidia has a nvml.dll library where you can get a lot of technical information.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question