So 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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…