vote up 8 vote down star
1

Once again one of those: "Is there an easier built-in way of doing things instead of my helper method?"

So it's easy to get the underlying type from a nullable type, but how do I get the nullable version of a .NET type?

So I have

typeof(int)
typeof(DateTime)
System.Type t = something;

and I want

int? 
DateTime?

or

Nullable<int> (which is the same)
if t is primitive then Nullable<T> else just T

Any suggestions? (Is there something built in.) Thanks in advance.

flag

78% accept rate

2 Answers

vote up 17 vote down check

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>.

link|flag
Nice! This is a really neat solution. – kronoz Sep 20 '08 at 13:19
Great answer! Just what I was looking for. – AlexDuggleby Sep 20 '08 at 13:23
Cool solution. What about making it an extension method on Type itself? Seems suitable in this situation. – jolson Sep 20 '08 at 20:15
Hmmm...wonder what GetNullableType(typeof(int?)) returns.... – Mark Brackett Sep 21 '08 at 0:33
@Mark: Ouch, never though of that possibility. Will edit to fix that bug. – Alex Lyman Sep 23 '08 at 9:25
vote up 1 vote down

There isn't anything built in that I know of, as the int?, etc. is just syntactic sugar for Nullable<T> and isn't given special treatment beyond that. It's especially unlikely given you're attempting to obtain this from the type information of a given type. Typically that always necessitates some 'roll your own' code as a given. You would have to use Reflection to create a new Nullable type with type parameter of the input type.

Edit: As the comments suggest actually Nullable<> is treated specially, and in the runtime to boot as explained in this article.

link|flag
Actaully, I'm pretty sure the CLR has some special magic for handling Nullable<>'s somewhat differently. I'll need to check this. – TraumaPony Sep 20 '08 at 13:34
I would be interested in this, happy to admit I'm wrong if that's the case :-) – kronoz Sep 20 '08 at 16:01
The CLR does have special handling for Nullables. blogs.msdn.com/somasegar/archive/… – Mark Brackett Sep 21 '08 at 0:37
Since you can add two int? via the + operator, we know that `Nullable`s get special treatment because this kind of generic operator overloading wouldn't work otherwise. – Konrad Rudolph Sep 23 '08 at 9:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.