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

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

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

Usage Example

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