当前位置: 代码迷 >> C# >> 获取操作系统全名,该怎么解决
  详细解决方案

获取操作系统全名,该怎么解决

热度:283   发布时间:2016-04-28 08:41:34.0
获取操作系统全名
VB.NET下可以使用 my.computer.info.osfullname获取 操作系统的全名
请问C#下对应的代码是什么?  注册表获取到的是对应的英文名。我要跟 my.computer.info.osfullname效果一模一样的
------解决思路----------------------
引用  .net的Microsoft.VisualBasic.Devices;
然后  using Microsoft.VisualBasic.Devices;
        
using Microsoft.VisualBasic.Devices;
ComputerInfo info = new ComputerInfo();
MessageBox.Show(info.OSFullName);
  相关解决方案