MethodInfo method2 = typeof(IntPtr).GetMethod(
"op_Explicit",
BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic,
null,
new Type[]{
typeof(IntPtr),
},
null
);
如果我尝试运行,我会得到一个模棱两可的错误,我该如何解决这个问题呢?感谢
我想要的方法是op_Explicit(intptr)返回值int32
答案 0 :(得分:2)
在具有不同类型的方法之间进行选择没有标准重载。你必须自己找到方法。您可以编写自己的扩展方法,如下所示:
public static class TypeExtensions {
public static MethodInfo GetMethod(this Type type, string name, BindingFlags bindingAttr, Type[] types, Type returnType ) {
var methods = type
.GetMethods(BindingFlags.Static | BindingFlags.Public)
.Where(mi => mi.Name == "op_Explicit")
.Where(mi => mi.ReturnType == typeof(int));
if (!methods.Any())
return null;
if (methods.Count() > 1)
throw new System.Reflection.AmbiguousMatchException();
return methods.First();
}
public static MethodInfo GetExplicitCastToMethod(this Type type, Type returnType )
{
return type.GetMethod("op_Explicit", BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic, new Type[] { type }, returnType);
}
}
然后使用它:
MethodInfo m = typeof(IntPtr).GetExplicitCastToMethod(typeof(int));
准确地说,IntPtr类中有两个已定义的强制转换:
public static explicit operator IntPtr(long value)
public static explicit operator long(IntPtr value)
System.Int64类中没有定义的强制类型转换(long是Int64的别名)。
您可以将Convert.ChangeType
用于此目的
答案 1 :(得分:1)
有多个显式运算符允许IntPtr
作为参数,它们只与返回类型不同。尝试使用此问题的解决方案,通过不仅指定参数类型而且还返回返回类型来获取您感兴趣的方法:
Get only Methods with specific signature out of Type.GetMethods()