Let\'s say that I have the methodInfo for something like Nullable.HasValue. Is there anyway to convert it to Nullable.HasValue
Nullable.HasValue
You have to reflect again because the methods are different. While the only difference for HasValue is the MethodInfo.DeclaringType, the difference in the Value property is the MethodInfo.ReturnType.