這是在Rudy Huyn的blog上看到的, "Status" 是在win10上才出現的屬性, 用來區分系統還是挺有效的。 ...
這是在Rudy Huyn的blog上看到的, "Status" 是在win10上才出現的屬性, 用來區分系統還是挺有效的。
public class Windows10Helper { private static bool? _isWindows10; public static bool IsWindows10() { if (!_isWindows10.HasValue) { _isWindows10 = Package.Current.GetType() .GetRuntimeProperty("Status") != null; } return _isWindows10.Value; } }