vote up 3 vote down star

Is there a one statement or one line way to accomplish something like this, where the string s is declared AND assigned the first non-null value in the expression?

//pseudo-codeish
string s = Coalesce(string1, string2, string3);

or, more generally,

object obj = Coalesce(obj1, obj2, obj3, ...objx);
flag

2 Answers

vote up 10 vote down

As Darren Kopp said.

Your statement

object obj = Coalesce(obj1, obj2, obj3, ...objx);

Can be written like this:

object obj = obj1 ?? obj2 ?? obj3 ?? ... objx;

to put it in other words:

var a = b ?? c;

is equivalent to

var a = b != null ? b : c;
link|flag
vote up 1 vote down

the ?? operator.

string a = nullstring ?? "empty!";

link|flag

Your Answer

Get an OpenID
or

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