Ejemplo n.º 1
0
        public static string GetServicePack()
        {
            var servicePack = string.Empty;

            if (NativeMethods.GetVersionEx(ref osVersionInfo))
            {
                servicePack = new Structures.OSVERSIONINFOEX
                {
                    dwOSVersionInfoSize = Marshal.SizeOf(typeof(Structures.OSVERSIONINFOEX))
                }.szCSDVersion;
            }

            return(servicePack);
        }
Ejemplo n.º 2
0
 public static extern bool GetVersionEx(ref Structures.OSVERSIONINFOEX osVersionInfo);