BinaryOperatorNotDefined() static private method

A string like "The binary operator {0} is not defined for the types '{1}' and '{2}'."
static private BinaryOperatorNotDefined ( object p0, object p1, object p2 ) : string
p0 object
p1 object
p2 object
return string
 internal static Exception BinaryOperatorNotDefined(object p0, object p1, object p2)
 {
     return(new InvalidOperationException(Strings.BinaryOperatorNotDefined(p0, p1, p2)));
 }