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

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

A string like "No coercion operator is defined between types '{0}' and '{1}'."
static private CoercionOperatorNotDefined ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
        internal static string CoercionOperatorNotDefined(object p0, object p1) => SR.Format(SR.CoercionOperatorNotDefined, p0, p1);

Usage Example

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