• Welcome to the arena
Visual Basic .NET/Variables

From Marvin's Arena

Jump to: navigation, search

A Variable is a place to store data. Visual Basic .NET provides the Dim (Dimension) Keyword to define a variable with a specific type.

Dim MyVar as Type

The standard Types are defined in the .NET Framework.

Dim sum as Integer