diff --git a/Aaru6.Checksums/Native.cs b/Aaru6.Checksums/Native.cs index f5a7868..d95d28f 100644 --- a/Aaru6.Checksums/Native.cs +++ b/Aaru6.Checksums/Native.cs @@ -7,10 +7,15 @@ namespace Aaru6.Checksums static bool _checked; static bool _supported; + public static bool ForceManaged { get; set; } + public static bool IsSupported { get { + if(ForceManaged) + return false; + if(_checked) return _supported;