3 | | You can invoke methods on primitive values (that the libraries provide as static methods on the Type) such as `c.isUpper`. |
4 | | These include mathematical methods such as `x.round`, `x.round(decimals)`, `a.min(b)`, `x.sin`, `x.truncate`, etc. |
| 3 | You can invoke methods on primitive values such as `c.isUpper`. These include mathematical methods such as `x.round`, `x.round(decimals)`, `a.min(b)`, `x.sin`, `x.truncate`, etc. (If you are already familiar with the CLR's base class library, these methods are derived from the shared/static methods on the respective types.) |