在不同类型的方法之间进行选择没有标准的重载。你必须自己找到方法。您可以编写自己的扩展方法,如下所示:
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
用于此目的