| 47 | |
| 48 | == Boolean == |
| 49 | |
| 50 | Boolean expressions include the literals `true` and `false` as well as operations such as `and`, `or`, `not`, comparisons and other tests. |
| 51 | {{{ |
| 52 | #!python |
| 53 | obj.isActive = true |
| 54 | if obj.isActive, .doSomething |
| 55 | }}} |
| 56 | |
| 57 | == Strings == |
| 58 | |
| 59 | to-do (literals, immutable, common methods, stringbuilder, msdn reference) |
| 60 | |
| 61 | == Calling Methods == |
| 62 | |
| 63 | to-do (don't need empty parens, calling on "this", calling base) |
| 64 | |
| 65 | == Instantiating Types == |
| 66 | |
| 67 | to-do (use parens, keyword args for properties, combining enums, works on System.Type and dynamic) |