Is there anything in C# that would allow you to do something such as

string str = nullval1 ?? nullval2 ?? nullval3 ?? "Hi";

and it would go left to right picking the first one that is not null?

If this operator doesnt do this, is there a possible alternative to provide similar function with minimal code?

link|improve this question

1  
It does what you want. – Gabe Feb 2 '11 at 2:03
that would have taken just a minute to try out.. – BrokenGlass Feb 2 '11 at 2:05
@BrokenGlass: Coding without any way to build atm, so im trying to check my syntax before i do this a bunch of times. – caesay Feb 2 '11 at 2:09
In case you find yourself coding without a compiler, but still have Internet access, do yourself a favor and give ideone.com a try. For example, here's the sample code from Jon Skeet's answer: ideone.com/qOvPI – Cody Gray Feb 2 '11 at 7:17
@Cody Gray: thankyou for the reference, i definitely bookmarked that. – caesay Feb 2 '11 at 16:27
feedback

1 Answer

up vote 5 down vote accepted

That works absolutely fine as-is. Sample code:

using System;

class Program
{
    static void Main(string[] args)
    {
        string x = null;
        string y = "y";
        string z = "z";

        Console.WriteLine(x ?? y ?? z); // Prints "y"
    }
}
link|improve this answer
really? thats interesting, ive never seen any examples of this.. anywhere. – caesay Feb 2 '11 at 2:04
2  
@Tommy: There's always your friendly neighborhood compiler! :D – BoltClock Feb 2 '11 at 2:05
@BoltClock: Coding without any way to build atm, so im trying to check my syntax before i do this a bunch of times. – caesay Feb 2 '11 at 2:10
1  
@Tommy, section 7.12 of the C# language specification discusses this behavior the ?? operator. It is right associative, such that a ?? b ?? c evaluates to a ?? (b ?? c), so a is evaluated first, then the right expression b ?? c, which evaluates b. The specification goes on to say "In general terms, an expression of the form E1 ?? E2 ?? ... ?? EN returns the first of the operands that is non-null, or null if all operands are null" – Anthony Pegram Feb 2 '11 at 2:13
feedback

Your Answer

 
or
required, but never shown

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