Ejemplo n.º 1
0
 static void AgeThat(IAge ageable)
 {
     ageable.IncrementAge();
 }
Ejemplo n.º 2
0
 // You can make a function without creating an object
 static void AgeThatThing(IAge ageableThing)
 {
     ageableThing.IncrementAge();
 }