Hi All,
I have a constructor signature like this
public NavigationLink(Func<String> getName,
Func<UrlHelper, String> getURL,
Func<bool> isVisible,
IEnumerable<NavigationLink> subItems)
Inside that constructor I am assigning the getName to a property of the containing class
GetName = getName
I have a string extension that does casing on a string call String.CapitalizeWords();
How do I apply that extension to the Func?
Thanks