It would be really nice if C# allowed an ??= operator. I've found myself writing the following frequently:

something = something ?? new Something();

I'd rather write it like this:

something ??= new Something();

Thoughts? New language extensions are always controversial by their nature.

link|improve this question
I would avoid packing too many rather obscure constructs into the language, if I were C# chief architect..... Plus, the ??== operator really doesn't seem all that intuitive to me, quite honestly. – marc_s Mar 17 '09 at 19:57
It wouldn't be new, it would follow the shorthand convention of other operators – Ed S. Mar 17 '09 at 20:02
Please see the duplicate post, especially the answer where you see that i = i + 1 and i += 1 are not the same for i = i ?? 1 and i ??= 1 – Samuel Mar 17 '09 at 20:08
@Samuel: good point – Ed S. Mar 17 '09 at 20:10
show 1 more comment
feedback

5 Answers

up vote 3 down vote accepted

I'm honestly torn on the =++ operator in the first place, and it's usage is rather widespread and common. From a clarity point of view, the extra couple of characters you need type probably isn't worth the change to the language to add a ??=. If this was a vote, I'd vote against that change to the language (good question, bad idea. :-)

I haven't tried this, but could you map ??= to a macro in visual studio that just did the rewrite for you?

link|improve this answer
feedback

Other programming languages like Ruby use this quite frequently:

something ||= Something.new
link|improve this answer
feedback

As ?? is shorthand for using the ternary operator in a fashion similar to:

(myObject != null) ? myObject : somethingElse;

rather than shorthand for an arithmetic operation, I don't think a ??= operation is a good fit. It's a conditional operator.

link|improve this answer
feedback

I would say that the ?? operator and more pertinently the above pattern is not so common and so a new operator is overkill.

link|improve this answer
My thoughts exactly. – marc_s Mar 17 '09 at 20:02
feedback

I'm not necessarily against the operator, however, that kind of variable reuse just doesn't feel like the "right way" to me. Bugs that should have been obvious NULL pointers end up populated with unexpected data and work in some unexpected way, etc....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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