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

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

A string like "The expression '{0}' is not supported for nullable type '{1}'"
static private ExpressionNotSupportedForNullableType ( object p0, object p1 ) : string
p0 object
p1 object
Результат string
        internal static string ExpressionNotSupportedForNullableType(object p0, object p1) => SR.Format(SR.ExpressionNotSupportedForNullableType, p0, p1);
Strings