Sunday, July 27, 2008

Variable In VB.Net

Declaration:
Dim VarName As DataType
Use:
VarName=Value
Example:
Dim x As Integer
X=10
Declare with Initial Value:
Dim x As Integer = 10

No comments: