Wednesday, September 20, 2006

Enumeration是个好东西

@ Enumerations are related symbols that have fixed values.
@ The purpose of enumerations is to simplify coding and improve code readability by enabing you to use meaningful symbols instead of simple numeric values.
@ How to creat Enumerations? For instance:
Enum Titles As String
Mr
Ms
Mrs
Dr
Jr
End Enum