Wiki

Changes between Version 9 and Version 10 of PrimitiveTypeMembers

Show
Ignore:
Timestamp:
04/22/10 02:28:14 (15 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PrimitiveTypeMembers

    v9 v10  
    11= Primitive Type Members = 
    22 
    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.  
     3You 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.) 
    54 
    65You can also invoke methods on primitive types such as `decimal.parse(s)`.