P
P
PavelVlas2021-03-24 19:34:32
.NET
PavelVlas, 2021-03-24 19:34:32

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);
            }


How can I find out the memory card 6-8GB?
Shoveled the whole Google.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
F
freeExec, 2021-03-24
@freeExec

Nvidia has a nvml.dll library where you can get a lot of technical information.

B
BasiC2k, 2021-03-24
@BasiC2k

Download AIDA64, almost all system information is displayed there.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question