public string GetString(ushort len, EAlphabetType alphabet = EAlphabetType.AZ19)
 {
     return(GetString(len, Alphabets.Get(alphabet)));
 }
Beispiel #2
0
        public static bool OnlySpecChars(this IEnumerable <char> chars, EAlphabetType alphabetType)
        {
            var alphabet = Alphabets.Get(alphabetType);

            return(OnlySpecChars(chars, alphabet));
        }