CreateKey() 공개 정적인 메소드

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

            return(true);
        }