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

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

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

Usage Example

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