The windows version information : Native Windows Function : Windows C# Examples


C# Examples » Windows » Native Windows Function »

 

The windows version information









    
//  Code  from  
//  A  Programmer's  Introduction  to  C#  2.0,  Third  Edition
//  copyright  2000  Eric  Gunnerson

using  System;
using  System.Runtime.InteropServices;

unsafe  struct  OSVERSIONINFO
{
          public  uint  dwOSVersionInfoSize;    
          public  uint  dwMajorVersion;    
          public  uint  dwMinorVersion;    
          public  uint  dwBuildNumber;
          public  uint  dwPlatformId;  
          public  fixed  char  szCSDVersion[128];
}

class  Program{
          [DllImport("Kernel32.dll",  CharSet  =  CharSet.Unicode)]
          static  extern  bool  GetVersionEx(ref  OSVERSIONINFO  lpVersionInfo);

          unsafe  static  void  Main(string[]  args)
          {
                    OSVERSIONINFO  versionInfo  =  new  OSVERSIONINFO();
                    versionInfo.dwOSVersionInfoSize  =  (uint)sizeof(OSVERSIONINFO);
                    bool  res  =  GetVersionEx(ref  versionInfo);
                    Console.WriteLine(Marshal.PtrToStringUni(new  IntPtr(versionInfo.szCSDVersion)));
          }
}
    
   
  
   



Output

S


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Windows
» Native Windows Function