Changes between Version 2 and Version 3 of Variables
- Timestamp:
- 01/16/13 00:17:16 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Variables
v2 v3 20 20 == Local Variables == 21 21 22 Local variables are created and used within a method. [[BR] 22 Local variables are created and used within a method. [[BR]] 23 23 They are used for temporary storage or calculation and are named starting with a leading 24 24 lowercase letter (no leading underscores or punctuation). … … 32 32 Local variables can be explicitly typed if desired otherwise they infer their type from the 33 33 type of what they are assigned from.[[BR]] 34 If explicitly declared (or typed) they can also have the usual AccessModifiers for variables imposed on them.35 34 36 35 {{{