AcTools.AcdFile.AcdEncryption.CreateKey C# (CSharp) 메소드

CreateKey() 공개 정적인 메소드

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

Usage Example

예제 #1
0
파일: Acd.cs 프로젝트: Abishai2007/actools
        public static bool IsAvailable()
        {
            try {
                AcdEncryption.CreateKey(null);
            } catch (NotImplementedException) {
                return(false);
            } catch (NullReferenceException) {
                return(true);
            }

            return(true);
        }