System.Linq.Strings.NoMethodOnTypeMatchingArguments C# (CSharp) Method

NoMethodOnTypeMatchingArguments() static private method

static private NoMethodOnTypeMatchingArguments ( string name, object type ) : string
name string
type object
return string
        internal static string NoMethodOnTypeMatchingArguments(string name, object type) =>
            SR.Format(SR.NoMethodOnTypeMatchingArguments, name, type);

Usage Example

Esempio n. 1
0
 public static InvalidOperationException NoMethodOnTypeMatchingArguments(object p0, object p1)
 {
     return(new InvalidOperationException(Strings.NoMethodOnTypeMatchingArguments(p0, p1)));
 }
All Usage Examples Of System.Linq.Strings::NoMethodOnTypeMatchingArguments