|
VB File Names : .vb; web-enabled will use .aspx
Identifiers:
 | Names given to Namespaces, types (enumerations, structures, classes,
modules, interfaces, and delegates) |
 | Type members (methods, constructors, events, constants, fields, and
properties), |
 | Variables |
 | Must begin with alphabetic or underscore. |
VB.NET
Keywords
Literals:
 | Numeric: integers, floating points |
 | String: text enclosed in quotes |
 | Character: single character, with letter "c" after specifying |
 | Date: within # characters |
 | Boolean: True or False |
 | Nothing: uninitialized data type |
Types:
 | 2 types
- Value - low budget (faster, uses small memory)
- Reference - enable object oriented references (uses pointers);
limited in speed, uses more memory
|
 |
Summary of basic types |
 |
Arrays |
 | Collections: groups of values within object structures (e.g.,
fields in a table row; tables in a database). |
|