= Operator (Visual Basic)
Visual Studio 2005
Assigns a value to a variable or property.
variableorproperty = value
The element on the left side of the equal sign (=) can be a simple scalar variable, a property, or an element of an array. The variable or property cannot be ReadOnly (Visual Basic). The = operator assigns the value on its right to the variable or property on its left.
Note |
|---|
| The = operator is also used as a comparison operator. For details, see Comparison Operators (Visual Basic). |
Overloading
The = operator can be overloaded only as a relational comparison operator, not as an assignment operator. For more information, see Operator Procedures.
The following example demonstrates the assignment operator. The value on the right is assigned to the variable on the left.
Dim testInt As Integer Dim testString As String Dim testButton As System.Windows.Forms.Button Dim testObject As Object testInt = 42 testString = "This is an example of a string literal." testButton = New System.Windows.Forms.Button() testObject = testInt testObject = testString testObject = testButton
Note