Convert Double to Integer : Double « Data Type « VB.Net Tutorial






Module Module1

    Sub Main()
        Dim dblValue As Double
        Dim intValue As Integer
        dblValue = 1.2345678
        intValue = dblValue
        Console.WriteLine(intValue)
    End Sub

End Module
1








2.9.Double
2.9.1.Declare Double type variable and assign value
2.9.2.Define double and output its value
2.9.3.Get Epsilon from Double
2.9.4.Show difference precision of Single and Double (1)
2.9.5.Single Double MaxValue and Memory Size (1)
2.9.6.Parse double value
2.9.7.Define and loop through double value array
2.9.8.Read Double value from Keyboard
2.9.9.Convert Double to Integer
2.9.10.Parse Double
2.9.11.Double.IsNaN()
2.9.12.Double.IsPositiveInfinity()
2.9.13.Double.IsNegativeInfinity()
2.9.14.Catch OverflowException