Example #1
0
 public static void Print(Text text, IConsonant consonant, IVowel vowel)
 {
     Console.WriteLine("-----Восстановленный исходный текст--------------");
     Console.WriteLine();
     Console.WriteLine(text.ToString());
     Console.WriteLine("------Сортированные списки букв------------------");
     Console.WriteLine();
     text.PrintLettersByDesc(vowel);
     Console.WriteLine();
     text.PrintLettersByDesc(consonant);
     Console.WriteLine();
 }