Author Archives: valerian

The ?? operator aka the Null Coalescing Operator

If are familiar to the use of ternary operators, you must have encountered several situations like this one : string pageTitle = getTitle() ? getTitle() : "Default Title"; You would want to call getTitle() only once, but then you wouldn’t … Continue reading

Posted in Code | Tagged , , , , , | Leave a comment