Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Converting a nullable object to an integer

5.00/5 (4 votes)
19 Mar 2011CPOL 21.1K  

As of .NET 2.0, we have a built-in way[^] of converting a Nullable<T> object to an object of type T with a default::

int? a;
int b = a.GetValueOrDefault(-1);

So to converting an object to an integer would then be:

object someValue = null; // Can be anything
int convertedInteger = ((int?)someValue).GetValueOrDefault(-1);

 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)