I like to send a generic type converter function to a method but I can\'t figure out how to do it.
Here\'s invalid syntax that explains what I like to achieve, the p
You need to make SomeUtility generic as well. Doing this and fixing the syntax gives:
SomeUtility
public void SomeUtility(Func converter) { var myType = converter("foo"); }