Jarrett Billingsley wrote: > If you had > > class A > { > void function() f; > void delegate() g; > void foo() {} > } > > What would be f's type, g's type, and foo's type? f: pointer to function returning void g: delegate returning void foo: function returning void