System.Security.Cryptography.DSAImplementation.DSACng.Supports2048KeySize C# (CSharp) Method

Supports2048KeySize() private static method

private static Supports2048KeySize ( ) : bool
return bool
            private static bool Supports2048KeySize()
            {
                Debug.Assert(RuntimeInformation.IsOSPlatform(OSPlatform.Windows));
                Version version = Environment.OSVersion.Version;
                bool isAtLeastWindows8 = version.Major > 6 || (version.Major == 6 && version.Minor >= 2);
                return isAtLeastWindows8;
            }