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

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

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

Usage Example

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