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

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

A string like "More than one property '{0}' on type '{1}' is compatible with the supplied arguments."
static private PropertyWithMoreThanOneMatch ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
        internal static string PropertyWithMoreThanOneMatch(object p0, object p1) => SR.Format(SR.PropertyWithMoreThanOneMatch, p0, p1);

Usage Example

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