How to Create Variables in VB .NET?
A variable is a storage area of the computer's memory.
Eg:
Dim number1 As Integer
Dim
Short for Dimension. It's a type of variable.your variable declarations with Dim.
number1
This is a variable. In other words, our storage area.
As Integer
We're telling Visual Basic that the variable is going to be a number (integer).
How to concanate two String in VB.Net?
What is the use of val Keyword n VB.net?
To convert text into Number.
A variable is a storage area of the computer's memory.
Eg:
Dim number1 As Integer
Dim
Short for Dimension. It's a type of variable.your variable declarations with Dim.
number1
This is a variable. In other words, our storage area.
As Integer
We're telling Visual Basic that the variable is going to be a number (integer).
How to concanate two String in VB.Net?
Dim FirstName As String
Dim LastName As String
Dim FullName As String
FirstName = "Lakshmi"
LastName = "Naraayanan"
FullName = FirstName & LastName
Dim LastName As String
Dim FullName As String
FirstName = "Lakshmi"
LastName = "Naraayanan"
FullName = FirstName & LastName
& -- Symbol is used for Concanating strings.
What is the use of val Keyword n VB.net?
To convert text into Number.