Mega Code Archive

 
Categories / VB.Net Tutorial / Data Type
 

Integer GetType

Module Module1   Const x As String = "This is a string"   Sub Main()     Dim a As Double = 5.678     Dim b As Int32 = 123     Console.WriteLine(a.ToString)     Console.WriteLine(b.ToString)     Console.WriteLine(456.987.ToString)     Dim c As Integer     Console.WriteLine(c.GetType())     Console.WriteLine(c.GetType().ToString)   End Sub End Module 5.678 123 456.987 System.Int32