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

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

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

Usage Example

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