Catel.Platforms.IsPlatformSupported C# (CSharp) Method

IsPlatformSupported() public static method

Determines whether the specified known platforms is currently supported.
public static IsPlatformSupported ( KnownPlatforms platformToCheck ) : bool
platformToCheck KnownPlatforms The platform to check.
return bool
        public static bool IsPlatformSupported(KnownPlatforms platformToCheck)
        {
            return IsPlatformSupported(platformToCheck, CurrentPlatform);
        }

Same methods

Platforms::IsPlatformSupported ( KnownPlatforms platformToCheck, SupportedPlatforms currentPlatform ) : bool