标签: c# reflection methodinfo
是否可以在Int32上检索*运算符的MethodInfo?
*
我已经尝试过这段代码,但没有成功(它返回null):
MethodInfo mi = typeof(System.Int32).GetMethod("op_Multiply");
谢谢!
答案 0 :(得分:4)
不,这是不可能的 - 没有这样的方法。
原始类型(Decimal除外)的算法实现为IL指令(mul,add,div等),而不是方法。 您可以看到IL操作码的完整列表here。
Decimal
mul
add
div