在我的小项目中,我使用System.Reflection
类来生成可执行代码。我需要调用自定义类型的+
运算符。有谁知道如何使用C#反射调用自定义类的自定义运算符?
答案 0 :(得分:26)
C#编译器将重载的运算符转换为名为op_XXXX
的函数,其中XXXX
是操作。例如,operator +
编译为op_Addition
。
以下是可重载运算符及其各自方法名称的完整列表:
┌──────────────────────────┬───────────────────────┬──────────────────────────┐
│ Operator │ Method Name │ Description │
├──────────────────────────┼───────────────────────┼──────────────────────────┤
│ operator + │ op_UnaryPlus │ Unary │
│ operator - │ op_UnaryNegation │ Unary │
│ operator ++ │ op_Increment │ │
│ operator -- │ op_Decrement │ │
│ operator ! │ op_LogicalNot │ │
│ operator + │ op_Addition │ │
│ operator - │ op_Subtraction │ │
│ operator * │ op_Multiply │ │
│ operator / │ op_Division │ │
│ operator & │ op_BitwiseAnd │ │
│ operator | │ op_BitwiseOr │ │
│ operator ^ │ op_ExclusiveOr │ │
│ operator == │ op_Equality │ │
│ operator != │ op_Inequality │ │
│ operator < │ op_LessThan │ │
│ operator > │ op_GreaterThan │ │
│ operator <= │ op_LessThanOrEqual │ │
│ operator >= │ op_GreaterThanOrEqual │ │
│ operator << │ op_LeftShift │ │
│ operator >> │ op_RightShift │ │
│ operator % │ op_Modulus │ │
│ implicit operator <type> │ op_Implicit │ Implicit type conversion │
│ explicit operator <type> │ op_Explicit │ Explicit type conversion │
│ operator true │ op_True │ │
│ operator false │ op_False │ │
└──────────────────────────┴───────────────────────┴──────────────────────────┘
因此,要检索operator+
结构的DateTime
方法,您需要编写:
MethodInfo mi = typeof(DateTime).GetMethod("op_Addition",
BindingFlags.Static | BindingFlags.Public );
答案 1 :(得分:6)
typeof(A).GetMethod("op_Addition").Invoke(null, instance1, instance2);
答案 2 :(得分:1)
考虑将您的自定义运算符设为property
的{{1}}。然后访问Class
及其property
到value
。
像
reflection