Integer.GetType : Integer « System « VB.Net by API






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

   
    
  








Related examples in the same category

1.Integer.CompareTo
2.Integer.MaxValue
3.Integer.MinValue
4.Integer.Parse
5.Integer.ToString()