System.Linq.Expressions.Error.OverloadOperatorTypeDoesNotMatchConversionType C# (CSharp) Méthode

OverloadOperatorTypeDoesNotMatchConversionType() static private méthode

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
Résultat Exception
        internal static Exception OverloadOperatorTypeDoesNotMatchConversionType(object p0, object p1)
        {
            return new InvalidOperationException(Strings.OverloadOperatorTypeDoesNotMatchConversionType(p0, p1));
        }
        /// <summary>
Error