Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 3.53 KB

File metadata and controls

47 lines (39 loc) · 3.53 KB
title Variables in Visual Basic
ms.custom
ms.date 07/20/2015
ms.prod .net
ms.reviewer
ms.suite
ms.technology
devlang-visual-basic
ms.tgt_pltfrm
ms.topic article
helpviewer_keywords
variables [Visual Basic]
values [Visual Basic], storing
ms.assetid 4cfaa06d-4ae3-4307-897b-cf599dc24caa
caps.latest.revision 27
author dotnet-bot
ms.author dotnetcontent

Variables in Visual Basic

You often have to store values when you perform calculations with [!INCLUDEvbprvb]. For example, you might want to calculate several values, compare them, and perform different operations on them, depending on the result of the comparison. You have to retain the values if you want to compare them.

Usage

[!INCLUDEvbprvb], just like most programming languages, uses variables for storing values. A variable has a name (the word that you use to refer to the value that the variable contains). A variable also has a data type (which determines the kind of data that the variable can store). A variable can represent an array if it has to store an indexed set of closely related data items.

Local type inference enables you to declare variables without explicitly stating a data type. Instead, the compiler infers the type of the variable from the type of the initialization expression. For more information, see Local Type Inference and Option Infer Statement.

Assigning Values

You use assignment statements to perform calculations and assign the result to a variable, as the following example shows.

[!code-vbVbVbalrVariables#1]

Note

The equal sign (=) in this example is an assignment operator, not an equality operator. The value is being assigned to the variable applesSold.

For more information, see How to: Move Data Into and Out of a Variable.

Variables and Properties

Like a variable, a property represents a value that you can access. However, it is more complex than a variable. A property uses code blocks that control how to set and retrieve its value. For more information, see Differences Between Properties and Variables in Visual Basic.

See Also

Variable Declaration
Object Variables
Troubleshooting Variables
How to: Move Data Into and Out of a Variable
Differences Between Properties and Variables in Visual Basic
Local Type Inference