Identifiers

Identifiers are names that programmers choose for their methods, variables, constants, objects, and so forth. An identifier must begin with a letter or an underscore.

Identifiers cannot clash with keywords. Thus, you cannot create a variable named Integer or Dim. In addition, Visual Basic .NET identifiers are not case-sensitive, so myVariable and MyVariable are treated as the same variable names(See example below).


Example:

Dim myVariable As Integer

Last modified: Wednesday, 10 July 2019, 11:12 AM