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

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

InvalidCastException with message like "The result type '{0}' of the dynamic binding produced by binder '{1}' is not compatible with the result type '{2}' expected by the call site."
static private DynamicBinderResultNotAssignable ( object p0, object p1, object p2 ) : Exception
p0 object
p1 object
p2 object
Результат System.Exception
        internal static Exception DynamicBinderResultNotAssignable(object p0, object p1, object p2)
        {
            return new InvalidCastException(Strings.DynamicBinderResultNotAssignable(p0, p1, p2));
        }
        /// <summary>
Error