CSPspEmu.Program.IsNet45OrNewer C# (CSharp) Method

IsNet45OrNewer() public static method

public static IsNet45OrNewer ( ) : bool
return bool
        public static bool IsNet45OrNewer()
        {
            // Class "ReflectionContext" exists from .NET 4.5 onwards.
            return Type.GetType("System.Reflection.ReflectionContext", false) != null;
        }