Beispiel #1
0
        public static bool OnlySpecChars(this IEnumerable <char> chars, EAlphabetType alphabetType)
        {
            var alphabet = Alphabets.Get(alphabetType);

            return(OnlySpecChars(chars, alphabet));
        }
 public string GetString(ushort len, EAlphabetType alphabet = EAlphabetType.AZ19)
 {
     return(GetString(len, Alphabets.Get(alphabet)));
 }
Beispiel #3
0
 public static IEnumerable <char> Get(EAlphabetType alphabetType)
 {
     return(AlphabetsCollections[alphabetType]);
 }