Wednesday, October 27, 2010

Naming Conventions

Variables are prededed by a prefix to indicate the data type of the item. This method is known as a naming convention and improves the readability of your code. It is very similar to the way presentation objects from the toolbox are named.

Name prefixes for the following data types:
  • String - str
  • Integer - int
  • Boolean - bln
  • Decimal - dec

No comments:

Post a Comment