1

Environment.OSVersion.ServicePack には、ServicePack 変数だけが表示されますが、メジャー バージョンまたはマイナー バージョンは表示されません。メジャー バージョンまたはマイナー バージョンを取得するにはどうすればよいですか?

4

2 に答える 2

2

次のコードを使用できます。

    void Main()
    {
        GetServicePackVersion().Major.Dump();
    }

    [StructLayout(LayoutKind.Sequential)]
    private struct OSVERSIONINFOEX
    {
        public int dwOSVersionInfoSize;
        public int dwMajorVersion;
        public int dwMinorVersion;
        public int dwBuildNumber;
        public int dwPlatformId;
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
        public string szCSDVersion;
        public short wServicePackMajor;
        public short wServicePackMinor;
        public short wSuiteMask;
        public byte wProductType;
        public byte wReserved;
    }

    [DllImport("kernel32.dll")]
    private static extern bool GetVersionEx([In, Out] ref OSVERSIONINFOEX osVersionInfo);

    public static Version GetServicePackVersion()
    {
        OSVERSIONINFOEX osVersionInfo = new OSVERSIONINFOEX();
        osVersionInfo.dwOSVersionInfoSize = Marshal.SizeOf(typeof(OSVERSIONINFOEX));

        if (GetVersionEx(ref osVersionInfo))
        {
            Version result = new Version(osVersionInfo.wServicePackMajor, osVersionInfo.wServicePackMinor);
            return result;
        }
        else
        {
            return null;
        }
    }
于 2014-07-25T17:23:09.530 に答える