gpt4 book ai didi

C# - 检测用户使用的是 Windows 7 还是 Windows 8

转载 作者:可可西里 更新时间:2023-11-01 10:06:03 24 4
gpt4 key购买 nike

<分区>

我在检测用户运行的操作系统时遇到了问题。我可以检测到它是版本 6 但我无法检测到是 6.1 还是 6.2到目前为止,这是我的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OSDetect
{
class Program
{
static void Main(string[] args)
{
string osVer = System.Environment.OSVersion.Version.ToString();

if (osVer.StartsWith("6.1"))
{
Console.WriteLine("This program isn't compatible with Windows 7 and older.");
Console.ReadKey();
}
else
{

}
if (osVer.StartsWith("6.2"))
{
Console.Write("> ");
Console.ReadKey();
}
else
{

}
}
}
}

虽然这不起作用。

所以基本上我希望它也检测次要版本。我该怎么做?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com