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

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

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

Usage Example

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