Como: Armazenar mais de um valor em uma variável (Visual Basic)
A variable holds more than one value if you declare it to be of a composite data type.
Tipos de dados de composição (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
Determine what composite data type you want to use for your variable.
If the composite data type is not already defined, define it so that your variable can use it.
Define a structure with a Instrução Structure.
Define an array with a Instrução Dim (Visual Basic).
Define a class with a Declaração Class (Visual Basic).
Declare your variable with a Dim statement.
Follow the variable name with an As clause.
Follow the As keyword with the name of the appropriate composite data type.
Consulte também
Referência
Resumo de tipo de dados (Visual Basic)
Conceitos
Caracteres de tipo (Visual Basic)
Tipos de dados de composição (Visual Basic)