System.Linq.Expressions.Strings.ExpressionTypeNotInvocable C# (CSharp) Method

ExpressionTypeNotInvocable() static private method

A string like "Expression of type '{0}' cannot be invoked"
static private ExpressionTypeNotInvocable ( object p0 ) : string
p0 object
return string
        internal static string ExpressionTypeNotInvocable(object p0) => SR.Format(SR.ExpressionTypeNotInvocable, p0);

Usage Example

 internal static Exception ExpressionTypeNotInvocable(object p0)
 {
     return(new ArgumentException(Strings.ExpressionTypeNotInvocable(p0)));
 }
Strings