AcTools.AcdFile.Acd.IsAvailable C# (CSharp) 메소드

IsAvailable() 공개 정적인 메소드

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

            return true;
        }
    }