[C#] GPU 사양보기


[C#] GPU 사양보기

-- Source Code -- ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_DisplayConfiguration"); string graphicsCard = string.Empty; foreach (ManagementObject mo in searcher.Get()) { foreach (PropertyData property in mo.Properties) { if (property.Name == "Description") { graphicsCard = property.Value.ToString(); } } } -- Result -- 참고 : http://stackoverflow.com/questions/5992099/c-sharp-detect-which-graphics-card-drives-video C# detect which graphics card drives vid...



원문링크 : [C#] GPU 사양보기