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

ExpressionNotSupportedForType() static private method

A string like "The expression '{0}' is not supported for type '{1}'"
static private ExpressionNotSupportedForType ( object p0, object p1 ) : string
p0 object
p1 object
return string
        internal static string ExpressionNotSupportedForType(object p0, object p1) => SR.Format(SR.ExpressionNotSupportedForType, p0, p1);
Strings