The basis of Spritz concept is that much of the time spend reading is "wasted" on moving your eyes from side to side, from one word to the next. By flashing the words quickly, one after the other, all in the same place, eye movement is reduced almost to zero. trove.com
How the new operator workS Consider getting the grandchild of a parent object like this: var g1 = parent?.child?.child?.child; if (g1 != null) // TODO That’s the equivalent of testing every single level, but in a single line of code. The “?.” operator is basically saying, if the object to the left is not null, then fetch what is to the right, otherwise return null and halt the access chain. blogs.msdn.com