System.Linq.Expressions.Error.ExpressionNotSupportedForNullableType C# (CSharp) Method

ExpressionNotSupportedForNullableType() static private method

PlatformNotSupportedException with message like "The instruction '{0}' is not supported for nullable type '{1}'"
static private ExpressionNotSupportedForNullableType ( object p0, object p1 ) : Exception
p0 object
p1 object
return System.Exception
        internal static Exception ExpressionNotSupportedForNullableType(object p0, object p1)
        {
            return new PlatformNotSupportedException(Strings.ExpressionNotSupportedForNullableType(p0, p1));
        }
        /// <summary>
Error