Visual Basic Language Keywords
The following tables list all the Visual Basic language keywords.
Reserved Keywords
The following keywords are reserved, which means you cannot use them as names for your programming elements such as variables or procedures. You can bypass this restriction by enclosing the name in brackets ([ ]). For more information, see "Escaped Names" in Declared Element Names.
Note
Using escaped names is not recommended, because it can make your code hard to read, and can lead to subtle errors that can be difficult to find.
EndIf |
|||
GoSub |
|||
Variant |
Wend |
||
|
|
Note
EndIf, GoSub, Variant, and Wend are retained as reserved keywords, although they are no longer used in Visual Basic. The meaning of the Let keyword has changed. Let is now used in LINQ queries. For more information, see Let Clause (Visual Basic).
Unreserved Keywords
The following keywords are not reserved, which means you can use them as names for your programming elements. However, doing this is not recommended, because it can make your code hard to read and can lead to subtle errors that can be difficult to find.
|
|
|