Click here to Skip to main content
15,881,089 members
Articles / Programming Languages / C#
Tip/Trick

The ?? Operator

Rate me:
Please Sign up or sign in to vote.
4.50/5 (27 votes)
4 Sep 2012CPOL 80.7K   13   35
This operator is introduced to set value in place of null value, it can also be defined in words like 'In case of null, pick value from another'

Introduction

Operator is introduced with Nullable datatype inclusion in .NET Framework operator ?? can also be referred in words like 'In case of null, pick value from another'.

Scenario

Suppose you're assigning a value to Nullable bool like:

C#
bool? b = null;
At the time of checking value, it will give you an error like:

C#
if(b) //Error CS0266.
{
 
}

So it's always preferable to use ?? to prevent error like:

C#
if(b ?? false)
{
}

It defines that, in case b is null, pick the value false.

?? can also be used in multiple choice of value like:

C#
bool ? a = null
bool ? b = null
bool ? c = true
 
a = b ?? c ?? false;

That will check b first if b is undefined or null, then it will move further to check for c if that also has null then it will set false to a.

License

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


Written By
Software Developer
India India
He is a Smart IT devloper with Few years of Expeariance But having Great command on ASP.net,C#,SQL Query,SSRS,Crystal Reports

Apart from that He Loves multimedia work too, Master of Adobe photoshop, Illustrator, CSS , HTML and all things.

He is Currently working in Microsoft Dynamics CRM and Having Nice Expearince with CRM. CRM Rocks!!!

Comments and Discussions

 
GeneralMy vote of 1 Pin
Abolfazl Khusniddinov4-Sep-12 22:52
Abolfazl Khusniddinov4-Sep-12 22:52 
GeneralRe: My vote of 1 Pin
Hiren solanki4-Sep-12 23:00
Hiren solanki4-Sep-12 23:00 
GeneralRe: My vote of 1 Pin
Andreas Gieriet5-Sep-12 3:52
professionalAndreas Gieriet5-Sep-12 3:52 
The vote of 1 is a bit too low, but I somehow understand why a lower vote is given.

You not even give the proper name to that operator: it's the Null Coalescing (Wikipedia)[^] operator.

IMHO, the given example is kind of poorly chosen: nullable value types are useful for database type map - otherwise I consider them as a code smell.

A more realistic scenario is in connection with reference types and especially with Enumerable<T> (e.g. linq queries):

C#
Record GetFirstOrSentryRecord(Func<MyRecord, bool> predicate)
{
    var query = from record in table where record=>predicate(record) select record;
    return query.FirstOrDefault() ?? MyRecord.SomeSentryRecord;
}

Or with defensive programming, at locations where you want no null values, e.g.:
C#
HandleError(..., context ?? "no context");

Etc.

Rule:

The ?? operator is everywhere usable where you have an instance of a reference type (including nullable value types) that may evaluate to null.


expandedwith ternary operatorwith null coalescing operator
C#
result = item;
if (result == null)
{
    result = other;
}

C#
result = item != null
       ? item
       : other;

C#
result = item
         ?? other;



Finally, a good tip provides references to say where to go from here, e.g.


Cheers
Andi
GeneralRe: My vote of 1 Pin
Hiren solanki5-Sep-12 3:58
Hiren solanki5-Sep-12 3:58 
GeneralRe: My vote of 1 Pin
Andreas Gieriet5-Sep-12 5:12
professionalAndreas Gieriet5-Sep-12 5:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.