Exemplo n.º 1
0
        static void Main(string[] args)
        {
            // Use the Salutation class for a Walmart Greeter.
            Salutation oldGuy = new Salutation("Welcome to Walmart!", "Thanks for shopping at Walmart!");

            // Get the guy to talk....
            Console.WriteLine(oldGuy.Greet());
            Console.WriteLine(oldGuy.SayFarewell());
        }
Exemplo n.º 2
0
 private void Speak(Salutation speaker)
 {
     Console.WriteLine(speaker.Greet());
     Console.WriteLine(speaker.SayFarewell());
 }