AcTools.AcdFile.AcdEncryption.CreateKey C# (CSharp) Method

CreateKey() public static method

public static CreateKey ( string s ) : string
s string
return string
        public static string CreateKey(string s) {
            throw new NotImplementedException();
        }

Usage Example

Example #1
0
        public static bool IsAvailable()
        {
            try {
                AcdEncryption.CreateKey(null);
            } catch (NotImplementedException) {
                return(false);
            } catch (NullReferenceException) {
                return(true);
            }

            return(true);
        }