判断当前操作系统

//利用C#判断当前操作系统是否为Win8及以上系统

public static bool IsWindows8()

{

  Version currentVersion = Environment.OSVersion.Version;

  Version compareToVersion = new Version("6.2");

  if (currentVersion.CompareTo(compareToVersion) >= 0)

    return true;

  else

    return false;

}

猜你喜欢

转载自www.cnblogs.com/dachuang/p/10496669.html