本文告诉大家如何判断系统是 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系统
本文会经常更新,请阅读原文: https://dotnet-campus.github.io//post/C-%E5%88%A4%E6%96%AD%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC.html ,以避免陈旧错误知识的误导,同时有更好的阅读体验。
本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名 lindexi (包含链接: https://dotnet-campus.github.io/ ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请 与我联系 。