CreateKey() public static méthode

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

            return(true);
        }