This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0
Other versions are also available for the following:
Want more? Here are some additional resources on this topic:
Visual Basic Language Reference
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. |
Note |
|---|
| EndIf, GoSub, Let, Variant, and Wend are retained as reserved keywords, although they are no longer used in 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.

See Also