Skip to content

C# 判断系统版本

Updated: at 08:22,Created: at 07:02

本文告诉大家如何判断系统是 win7 还是 xp 系统

使用下面代码可以判断

private static readonly Version _osVersion = Environment.OSVersion.Version;
internal static bool IsOSVistaOrNewer
{
get { return _osVersion >= new Version(6, 0); }
}
internal static bool IsOSWindows7OrNewer
{
get { return _osVersion >= new Version(6, 1); }
}
internal static bool IsOSWindows8OrNewer
{
get { return _osVersion >= new Version(6, 2); }
}

上面方法不能判断是win10系统

关于C#中Environment.OSVersion判断系统及Win10上的问题 - 夏至千秋 - 博客园


知识共享许可协议

原文链接: http://blog.lindexi.com/post/C-%E5%88%A4%E6%96%AD%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC

本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。 欢迎转载、使用、重新发布,但务必保留文章署名 林德熙 (包含链接: https://blog.lindexi.com ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我 联系