本文告诉大家如何判断系统是 win7 还是 xp 系统
使用下面代码可以判断
代码语言:javascript复制 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上的问题 - 夏至千秋 - 博客园