Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Exploring Nullable types: Part 2

0.00/5 (No votes)
14 Nov 2011 1  
This is the second and last part of the post on Nullable type series.

This is second and last part of the post on Nullable type series. You can view the first part from here:

In this series, I will be talking about certain rules that we need to take care of while using Nullable type. I will be taking it scenario wise.

First Scenario

C#
Int? a=8;
object c = a;
long d = (long)c;

It will be compiled successfully but will throw an Invalid Cast Exception. Means, you cannot cast it to any other type except the underlying type which is here int although int type can be hold by long.

But the below lines will run successfully:

C#
long d = (int)c;
long? d = (int)c;

Because here we are converting to an underlying type int which we can assign to long as it is a widening conversion.

Now let’s move to another point.

Second Scenario

Guess what will be the output of the below lines:

C#
int? b=5;
Console.WriteLine(b.GetType());

Is it System.Nullable<Int32>. No
This actually shows System.Int32. So beware.

Few More Things

  • We can use Unary operator over Nullable type. It will be null if it has no value or null else applies the operator.
  • Binary operators also can be used with Nullable type. Give it a view:
C#
int? b=5;
int? a = 7;
Console.WriteLine(a+b);

This will print 12. But what if:

C#
int? b=5;
int? a=null;
Console.WriteLine(a+b);

This will print nothing because the addition result will be null. So be sure, during any binary operation if one operand (or does not have any value) is null. The result will also be null (or would not have any value).

Hope both posts will give you all a fair enough knowledge of Nullable types. Do share if you have some more points in this. I will add those here..

Happy C# coding.


License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here