System.Linq.Expressions.Error.OverloadOperatorTypeDoesNotMatchConversionType C# (CSharp) Метод

OverloadOperatorTypeDoesNotMatchConversionType() статический приватный Метод

InvalidOperationException with message like "The return type of overload method for operator '{0}' does not match the parameter type of conversion method '{1}'."
static private OverloadOperatorTypeDoesNotMatchConversionType ( object p0, object p1 ) : Exception
p0 object
p1 object
Результат Exception
        internal static Exception OverloadOperatorTypeDoesNotMatchConversionType(object p0, object p1)
        {
            return new InvalidOperationException(Strings.OverloadOperatorTypeDoesNotMatchConversionType(p0, p1));
        }
        /// <summary>
Error