Click here to Skip to main content
15,885,920 members
Articles / Programming Languages / Visual Basic
Tip/Trick

How to declare a variable in VB.NET without using the As type

Rate me:
Please Sign up or sign in to vote.
3.90/5 (6 votes)
17 Aug 2012CPOL1 min read 63K   74   7   8
How to declare variables in VB.NET without using the As type.

Introduction

This article is about how to declare variables in VB.NET without using the As type.

Type Specifying Characters

A type character following a non-escaped identifier (with no whitespace between them) denotes the type of the identifier. You can use it in place of the As type portion of declaration, for example the following declaration:

VB
Dim str$ 

'str is a variable name and $ indicates as String Type.
'the above declaration is as same thing as following.
  
Dim str As String

Type character also detracts from readability. If you use them be sure that if the declaration includes a type character, the character agrees with the type specified in the declaration itself; otherwise, a compiler time error occurs if your declaration omits the type. The complier will insert the type character implicitly substituted as the type of the declaration. The following syntax lists the type characters available in VB.NET (there is no type character for Byte or Short).

Type Character Character
Integer
%
Long
&
Decimal
@
Single
!
Double
#
String
$

Example of declaration

VB
Dim num%       'num is variable of Integer type declared.

While declared variable we can also initialize a value to it.

VB
num=500

Also we can declare multiple variables at a time.

VB
Dim num, n%        'num & n is variable of Integer type declared.

We can also initialize it at the time of declaration.

VB
Dim num = 250, n = 670,val%      'num,n & val is variable of Integer type.

Different types can be declare at a time.

VB
Dim number = 180%, str$, salary@
'number is variable of Integer Type & initialized,
'str is variable of String Type, Salary is variable of Decimal Type

All types of declaration can be viewed as follows.

VB
Dim number%    'number is variable of Integer Type.
Dim num&       'num is variable of Long Integer Type.
Dim salary@    'salary is variable of Decimal Type.
Dim amount!    'amount is variable of Single Type.
Dim rate#      'rate is variable of Double Type.
Dim name$      'name is variable of String Type.

Note

No spaces are allowed within a variable name and type character. Syntax: Dim [variableName] space [Type Character].

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralGood to know Pin
DejaVu832-Sep-13 19:56
DejaVu832-Sep-13 19:56 
Questiondont likey... Pin
Simon_Whale28-Aug-12 3:30
Simon_Whale28-Aug-12 3:30 
Question[My vote of 1] Sorry, but no. Pin
crb900020-Aug-12 8:27
crb900020-Aug-12 8:27 
GeneralMy vote of 1 Pin
rctaubert18-Aug-12 7:57
rctaubert18-Aug-12 7:57 
GeneralMy vote of 2 Pin
Klaus Luedenscheidt17-Aug-12 17:57
Klaus Luedenscheidt17-Aug-12 17:57 
GeneralRe: My vote of 2 Pin
User 759270617-Aug-12 22:49
User 759270617-Aug-12 22:49 
GeneralRe: My vote of 2 Pin
Klaus Luedenscheidt18-Aug-12 18:01
Klaus Luedenscheidt18-Aug-12 18:01 
GeneralMy vote of 2 Pin
emartinho17-Aug-12 10:57
emartinho17-Aug-12 10:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.