Typedefs
VB knows a primitive kind of typedef via Import aliases:
Import
Imports S = System.String
Dim x As S = "Hello"
This is more useful when used in conjunction with generic types:
Import
Imports StringPair = System.Collections.Generic.KeyValuePair(Of String, String)
