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

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

A string like " The member '{0}' is not declared on type '{1}' being created"
static private ArgumentMemberNotDeclOnType ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
        internal static string ArgumentMemberNotDeclOnType(object p0, object p1) => SR.Format(SR.ArgumentMemberNotDeclOnType, p0, p1);

Usage Example

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