Exemple #1
0
        public static int GetCountCharsFromArray()
        {
            string[] words      = Initializer.GetArrayOfWords();
            int      countChars = words.SelectMany(w => w).Distinct().Count();

            return(countChars);
        }