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

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

A string like "Reference equality is not defined for the types '{0}' and '{1}'."
static private ReferenceEqualityNotDefined ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
        internal static string ReferenceEqualityNotDefined(object p0, object p1) => SR.Format(SR.ReferenceEqualityNotDefined, p0, p1);

Usage Example

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