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

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

static private NoMethodOnType ( string name, object type ) : string
name string
type object
Результат string
        internal static string NoMethodOnType(string name, object type) =>
            SR.Format(SR.NoMethodOnType, name, type);

Usage Example

Пример #1
0
 public static InvalidOperationException NoMethodOnType(object p0, object p1)
 {
     return(new InvalidOperationException(Strings.NoMethodOnType(p0, p1)));
 }
All Usage Examples Of System.Linq.Strings::NoMethodOnType