System.Net.Http.Formatting.JsonContractResolver.IsTypeNullable C# (CSharp) Method

IsTypeNullable() private static method

private static IsTypeNullable ( Type type ) : bool
type Type
return bool
        private static bool IsTypeNullable(Type type)
        {
            return Nullable.GetUnderlyingType(type) != null;
        }