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