© 2026 Hedgehog Software, LLC
interface IFooReturner { Foo GetFoo(); } class Foo {} class FooBar : Foo {} class FooBarGetter : IFooReturner { FooBar GetFoo(); }