static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");

            Wookie wookie = new Wookie();

            wookie.Voler();
        }
Ejemplo n.º 2
0
 public static void Voler(this Wookie wookie)
 {
     Console.WriteLine("I can fly");
 }