System.Linq.Expressions.Strings.BinderNotCompatibleWithCallSite C# (CSharp) Метод

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

A string like "The result type '{0}' of the binder '{1}' is not compatible with the result type '{2}' expected by the call site."
static private BinderNotCompatibleWithCallSite ( object p0, object p1, object p2 ) : string
p0 object
p1 object
p2 object
Результат string
        internal static string BinderNotCompatibleWithCallSite(object p0, object p1, object p2) => SR.Format(SR.BinderNotCompatibleWithCallSite, p0, p1, p2);

Usage Example

Пример #1
0
 internal static Exception BinderNotCompatibleWithCallSite(object p0, object p1, object p2)
 {
     return(new InvalidOperationException(Strings.BinderNotCompatibleWithCallSite(p0, p1, p2)));
 }
Strings