I'm looking for a method to convert instance of MemberInfo
to "Func" type (to use it through lambda expression later).
Lets, say I have a member function of type
public bool func(int);
Using reflection, I somehow get instance of MemberInfo
"mi", now i want to convert it to Func<int, bool>;
type. something like:
Func<int, bool f = myType.GetMember(mi.Name);
Is there a way to do it?
ps. Marc Grawell's answer resolves my issue, no need for further comments