Exemplo n.º 1
0
 static public ILBinaryOperatorInvokation GetILBinaryOperatorInvokationByName(this ILValue item, string name, ILValue right)
 {
     return(item.GetILBinaryOperatorInvokation(
                BinaryOperatorTypeExtensions.GetBinaryOperatorTypeByName(name),
                right
                ));
 }
Exemplo n.º 2
0
 static public BinaryOperatorInfoEX GetBinaryOperatorByName(this Type item, Type right_type, string name)
 {
     return(item.GetBinaryOperator(right_type, BinaryOperatorTypeExtensions.GetBinaryOperatorTypeByName(name)));
 }