NameOf
NameOf copied to clipboard
Get method name from interface
I'd like to get the following working:
Name.OfVoid<IModel>(x => x.Method);
What's working is
Name.OfVoid<SomeConcreteModel>(x => x.Method);
I'd prefer to use the interface