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