Possible Duplicate:
What is the “??” operator for?

What does the ?? notation mean here?

Am I right in saying: Use id, but if id is null use string "ALFKI" ?

public ActionResult SelectionClientSide(string id)
        {
            ViewData["Customers"] = GetCustomers();
            ViewData["Orders"] = GetOrdersForCustomer(id ?? "ALFKI");
            ViewData["id"] = "ALFKI";
            return View();
        }
        [GridAction]
        public ActionResult _SelectionClientSide_Orders(string customerID)
        {
            customerID = customerID ?? "ALFKI";
            return View(new GridModel<Order>
            {
                Data = GetOrdersForCustomer(customerID)
            });
        }
link|improve this question

1  
I usually see ?? following the letters WTF when my code comes back from its code review process :-) – paxdiablo Oct 7 '10 at 3:38
searched about 3 different variations and nothing came up. Wrong terms I guess... – baron Oct 7 '10 at 3:44
3  
The problem is that you can't really search either SO or Google for ??... – BoltClock Oct 7 '10 at 3:46
feedback

closed as exact duplicate by cHao, jjnguy, jball, BoltClock, John Gietzen Oct 7 '10 at 4:26

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

That's the null-coalescing operator.

var x = y ?? z;

// is equivalent to:
var x = (y == null) ? z : y;

// also equivalent to:
if (y == null) 
{
    x = z;
}
else
{
    x = y;
}

ie: x will be assigned z if y is null, otherwise it will be assigned y.
So in your example, customerID will be set to "ALFKI" if it was originally null.

link|improve this answer
+1 for having an appropriate user name for the question – Val Oct 7 '10 at 3:35
my assumption is correct. thank you for your thorough explanation. – baron Oct 7 '10 at 3:45
feedback

It's the null coalescing operator: http://msdn.microsoft.com/en-us/library/ms173224(VS.80).aspx

It provides a value (right side) when the first value (left side) is null.

link|improve this answer
feedback

It means "if id or customerID is null, pretend it's "ALFKI" instead.

link|improve this answer
That's a great way to explain it. – jjnguy Oct 7 '10 at 3:34
feedback

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