show/hide this revision's text 3 Duh.

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)
show/hide this revision's text 2 added 19 characters in body

Typedefs

VB knows a primitive kind of typedef via Import aliases:

Import S = System.String

Dim x As S = "Hello"

This is more useful when used in conjunction with generic types:

Import StringPair = System.Collections.Generic.KeyValuePair(Of String, String)
show/hide this revision's text 1

VB knows a primitive kind of typedef via Import aliases:

Import S = System.String

Dim x As S = "Hello"

This is more useful when used in conjunction with generic types:

Import StringPair = System.Collections.Generic.KeyValuePair(Of String, String)