Share via


How to: Hold More Than One Value in a Variable (Visual Basic)

A variable holds more than one value if you declare it to be of a composite data type.

Composite Data Types (Visual Basic) include structures, arrays, and classes. A variable of a composite data type can hold a combination of elementary data types and other composite types. Structures and classes can hold code as well as data.

To hold more than one value in a variable

  1. Determine what composite data type you want to use for your variable.

  2. If the composite data type is not already defined, define it so that your variable can use it.

  3. Declare your variable with a Dim statement.

  4. Follow the variable name with an As clause.

  5. Follow the As keyword with the name of the appropriate composite data type.

See Also

Reference

Data Type Summary (Visual Basic)

Concepts

Type Characters (Visual Basic)

Composite Data Types (Visual Basic)

Value Types and Reference Types

Other Resources

Structures (Visual Basic)

Arrays in Visual Basic

Objects and Classes in Visual Basic