Mega Code Archive

 
Categories / C# / Development Class
 

Is 2003 Vista Or Greater

using System; using System.Collections.Generic; using System.Linq; using System.Text;   internal class OSHelper   {     internal static bool Is2003VistaOrGreater { get { return Environment.OSVersion.Version.CompareTo(new Version(5, 2)) >= 0; } }     internal static bool IsVistaOrGreater { get { return Environment.OSVersion.Version.CompareTo(new Version(6, 0)) >= 0; } }   }