Exemplo n.º 1
0
        private static void ShowFontAdjustment()
        {
            StringOperations fontAdjustment = new StringOperations();

            fontAdjustment.ShowFontAdjustment();
            Console.WriteLine();
        }
Exemplo n.º 2
0
        private static void ShowAverageStringLength()
        {
            Console.Write("Enter the string: ");
            string           textLine         = Console.ReadLine();
            StringOperations stringOperations = new StringOperations();

            stringOperations.ShowAverageWordLength(textLine);
            Console.WriteLine();
        }
Exemplo n.º 3
0
        private static void ShowCharDoubler()
        {
            Console.Write("Enter the first line: ");
            string firstLine = Console.ReadLine();

            Console.Write("Enter the second line: ");
            string           secondLine        = Console.ReadLine();
            StringOperations stringOperations1 = new StringOperations();

            stringOperations1.ShowCharDoubler(firstLine, secondLine);
            Console.WriteLine();
        }