[Previous] [TOC] [Next]

Type and Class Definitions


Type names are prefixed with t, and class names are prefixed with C. These prefixes are also used as the base-type prefixes when naming instances. The rest of the name is written in mixed case:

  Type tTableEntry
      nNewState As Integer
      lAction   As Long
  End Type

And in use:

  Dim tCell         As tTableEntry
  Dim CSymbolTable  As New CTable


[Previous] [TOC] [Next]