Introduction
Introduction
A named storage location that can contain data that can be modified during program execution. Each
variable has a name that uniquely identifies it within its scope. A data type can be specified or not.
DATA TYPES
A data type consisting of a sequence of contiguous characters that represent the characters themselves
rather than their numeric values. A String can include letters, numbers, spaces, and punctuation.
Dim StringFilename as String = "filename.csv"
You can also use Integer variables to represent enumerated values. An enumerated value can contain a
finite set of unique whole numbers, each of which has special meaning in the context in which it is used.
Dim a as integer = 0 'a as integer
a = Math.Sqrt(c2 - 49)