Users Pricing

forum

Home Forums How useful is C#'s ?? operator? – MindStick

How useful is C#'s ?? operator?

Anonymous User 2011 29 Jan 2014

I have been intrigued by the ?? operator, but have still been unable to use it. I usually think about it when I am doing something like:

var x = (someObject as someType).someMember;

If someObject is valid and someMember is null, I could do

var x = (someObject as someType).someMember ?? defaultValue;

but almost invariably I get into problems when someObject is null, and ?? doesn't help me make this any cleaner than doing the null check myself.

What uses have you guys found for ?? in practical situations?

2 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md