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

A string like "The user-defined operator method '{1}' for operator '{0}' must have identical parameter and return types."
static private UserDefinedOpMustHaveConsistentTypes ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
Пример #1
0
 internal static Exception UserDefinedOpMustHaveConsistentTypes(object p0, object p1)
 {
     return(new ArgumentException(Strings.UserDefinedOpMustHaveConsistentTypes(p0, p1)));
 }