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