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

TryNotSupportedForValueTypeInstances() static private method

NotSupportedException with message like "TryExpression is not supported as a child expression when accessing a member on type '{0}' because it is a value type. Construct the tree so the TryExpression is not nested inside of this expression."
static private TryNotSupportedForValueTypeInstances ( object p0 ) : Exception
p0 object
return Exception
        internal static Exception TryNotSupportedForValueTypeInstances(object p0)
        {
            return new NotSupportedException(Strings.TryNotSupportedForValueTypeInstances(p0));
        }
Error