NetIde.Util.Forms.FolderBrowser.IsAtLeastVista C# (CSharp) Method

IsAtLeastVista() private static method

private static IsAtLeastVista ( ) : bool
return bool
        private static bool IsAtLeastVista()
        {
            return
                Environment.OSVersion.Platform == PlatformID.Win32NT &&
                Environment.OSVersion.Version >= new Version(6, 0, 6000);
        }