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

NoMethodOnType() static private method

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

Usage Example

Esempio n. 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