+92 332 4229 857 99ProjectIdeas@Gmail.com

Datatype-Information about variable (Vb.net)


How to get information(i.e. data-type) about any variable
TypeName() is a function which returns data-type information about any variable.

Example
Dim x As Double = Nothing
MsgBox(TypeName(x))

Output
The message box will display Double.

0 comments: