2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / TypeHelpers.cs
blob4306e4435f57076489c7d6f49ec8a898d7a140eb
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
14 using System;
16 internal static class TypeHelpers {
18 public static bool TypeAllowsNullValue(Type type) {
19 // reference types allow null values
20 if (!type.IsValueType) {
21 return true;
24 // nullable value types allow null values
25 // code lifted from System.Nullable.GetUnderlyingType()
26 if (type.IsGenericType && !type.IsGenericTypeDefinition && (type.GetGenericTypeDefinition() == typeof(Nullable<>))) {
27 return true;
30 // no other types allow null values
31 return false;