show/hide this revision's text 2 Fixed bug in code sample that caused unexpected behavior

Here is the code I use:

Type GetNullableType(Type type) {
    // Use Nullable.GetUnderlyingType() to remove the Nullable<T> wrapper if type is already nullable.
    type = Nullable.GetUnderlyingType(type);
    if (type.IsValueType)
        return typeof(Nullable<>).MakeGenericType(type);
    else
        return type;
}

Edit: Original code had a bug where it would behave unexpectedly if type was itself a Nullable<T>.

show/hide this revision's text 1

Here is the code I use:

Type GetNullableType(Type type) {
    if (type.IsValueType)
        return typeof(Nullable<>).MakeGenericType(type);
    else
        return type;
}