操作系统

C#检测操作系统版本的方法

时间:2024-07-15 21:24:28 操作系统 我要投稿
  • 相关推荐

C#检测操作系统版本的方法汇总

  本文实例为大家分享了C#检测操作系统版本的方法,供大家参考,具体内容如下

  我们通过System.Environment.OSVersion.Version获得操作系统的版本号,然后再根据版本号进行判断操作系统是什么版本。

  Version 类的属性

  参考于:https://msdn.microsoft.com/zh-cn/library/windows/desktop/ms724834(v=vs.85).aspx

  注意:在msdn官方文档有说明 → OSVersion 属性报告两个相同的版本号 (6.2.0.0) Windows 8 和 Windows 8.1。在某些情况下, OSVersion 属性可能不会返回与指定的 Windows 程序兼容性模式功能的版本相匹配的操作系统版本。

  代码:

  public class GetOSystem{private const string Windows2000 = "5.0";private const string WindowsXP = "5.1";private const string Windows2003 = "5.2";private const string Windows2008 = "6.0";private const string Windows7 = "6.1";private const string Windows8OrWindows81 = "6.2";private const string Windows10 = "10.0";private string OSystemName;public void setOSystemName(string oSystemName){this.OSystemName = oSystemName;}public GetOSystem(){switch (System.Environment.OSVersion.Version.Major + "." + System.Environment.OSVersion.Version.Minor){case Windows2000:setOSystemName("Windows2000");break;case WindowsXP:setOSystemName("WindowsXP");break;case Windows2003:setOSystemName("Windows2003");break;case Windows2008:setOSystemName("Windows2008");break;case Windows7:setOSystemName("Windows7");break;case Windows8OrWindows81:setOSystemName("Windows8.OrWindows8.1");break;case Windows10:setOSystemName("Windows10");break;}Console.WriteLine(OSystemName);}}class Program{static void Main(string[] args){#region 检测系统new GetOSystem();#endregion}}

  输出结果:

  以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

【C#检测操作系统版本的方法】相关文章:

c#检测cpu使用率09-01

操作系统打补丁的方法08-22

初学者学习linux操作系统用什么版本10-20

C#抽象工厂模式的几种实现方法及比较10-20

Windows操作系统防范病毒的方法介绍07-17

Windows 7操作系统硬盘安装的方法07-06

让Windows 7操作系统运行更快的方法07-12

关于Linux查看系统版本的方法汇总07-05

Linux和Windows操作系统远程互访的方法05-13

Windows操作系统用户摆脱黑客攻击的方法08-02