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

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

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

Usage Example

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