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

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

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

Usage Example

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