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

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

A string like "The operator '{0}' is not implemented for type '{1}'"
static private OperatorNotImplementedForType ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
        internal static string OperatorNotImplementedForType(object p0, object p1) => SR.Format(SR.OperatorNotImplementedForType, p0, p1);
#endif

Usage Example

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