Categories
- Code (32)
- C# (4)
- emacs (4)
- Javascript (1)
- PHP (1)
- Python (6)
- Shell Script (2)
- silverlight (4)
- Blend (2)
- Sysadmin (3)
- unix (4)
- Code (32)
Meta
ad
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