vote up 8 vote down star
2

I was doing some testing with nullable types, and it didn't work quite as I expected:

int? testInt = 0;
Type nullableType = typeof(int?);
Assert.AreEqual(nullableType, testInt.GetType()); // not the same type

My question is why does testInt.GetType() return int, and typeof(int?) return the true nullable type?

According to Enyra this should work. Guess what, it doesn't:

DateTime? test = new DateTime(434523452345);
Assert.IsTrue(test.GetType() == typeof(Nullable)); //FAIL 

DateTime? test = new DateTime(434523452345);
Assert.IsTrue(test.GetType() == typeof(Nullable<>)); //STILL FAIL
flag

75% accept rate
See my answer for a technique that will get you the "real" type of a nullable variable. (And my technique actually works!) – Luke Apr 24 at 12:28
That does indeed work, nice one! – Blake Pettersson Apr 24 at 12:41

4 Answers

vote up 17 vote down check

According to the MSDN :

Calling GetType on a Nullable type causes a boxing operation to be performed when the type is implicitly converted to Object. Therefore GetType always returns a Type object that represents the underlying type, not the Nullable type.

When you box a nullable object, only the underlying type is boxed.

Again, from MSDN :

Boxing a non-null nullable value type boxes the value type itself, not the System.Nullable that wraps the value type.

link|flag
Great that was just what I was looking for! Thanks! – Blake Pettersson Apr 24 at 10:53
Good find on MSDN. – Nick Berardi Apr 24 at 10:54
vote up 7 vote down

Further to Romain's correct answer, if you want to compare the "real" types (ie, without implicitly converting any nullable type to its underlying type) then you can create an extension method like so:

public static class MyExtensionMethods
{
    public static Type GetRealType<T>(this T source)
    {
        return typeof(T);
    }
}

And then try the following tests:

int? a = 0;
Console.WriteLine(a.GetRealType() == typeof(int?));         // True
Console.WriteLine(a.GetRealType() == typeof(int));          // False

int b = 0;
Console.WriteLine(b.GetRealType() == typeof(int));          // True
Console.WriteLine(b.GetRealType() == typeof(int?));         // False

DateTime? c = DateTime.Now;
Console.WriteLine(c.GetRealType() == typeof(DateTime?));    // True
Console.WriteLine(c.GetRealType() == typeof(DateTime));     // False

DateTime d = DateTime.Now;
Console.WriteLine(d.GetRealType() == typeof(DateTime));     // True
Console.WriteLine(d.GetRealType() == typeof(DateTime?));    // False
link|flag
vote up -3 vote down

I answered this question a few month ago on my own blog, you can read it here. A nullable type is always of type Nullable<>, so in your case it would be Nullable.

link|flag
Why down vote for a correct answer? – Enyra Apr 24 at 12:28
vote up -11 vote down

According to the MSDN

This is stupid! MS should fix this "bug".

link|flag
4  
This is not a bug it is designed so that you can compare the types the same way that you compare them for reference types. A nullable int will compare to a non-nullable int. The same way a null String will compare to a String with a value. – Nick Berardi Apr 24 at 10:54
I know its not a bug, thats not the point. This kind of thing breaks the "principle of last surprise" IMO and I still think its stupid. If you need to handle nullable types take them as special case do not change the well known function to return unexpectable thing when 'special' type is feeded into it.... – majkinetor Apr 24 at 11:33
As you can see, its obvious from this question that it confuses people – majkinetor Apr 24 at 11:42
There are lots of things that confuses us when we don't know the reason behind it. My guess is that it doesn't confuse the person who asked the question anymore. – Svish Apr 24 at 14:19
I am not guessing. en.wikipedia.org/wiki/… – majkinetor Apr 25 at 16:09

Your Answer

Get an OpenID
or

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