AcTools.AcdFile.Acd.IsAvailable C# (CSharp) Méthode

IsAvailable() public static méthode

public static IsAvailable ( ) : bool
Résultat bool
        public static bool IsAvailable() {
            try {
                AcdEncryption.CreateKey(null);
            } catch (NotImplementedException) {
                return false;
            } catch (NullReferenceException) {
                return true;
            }

            return true;
        }
    }