Double.IsNegativeInfinity() : Double « System « VB.Net by API






Double.IsNegativeInfinity()

  
 
Imports System                

Module MyModule

  Sub Main()

    If (Double.IsNegativeInfinity("0.0000000000000001")) Then
        Console.WriteLine("Negative infinity.")
    End If
  End Sub
End Module

   
    
  








Related examples in the same category

1.Double.Epsilon
2.Double.IsNaN()
3.Double.IsPositiveInfinity()
4.Double.MaxValue
5.Double.Parse
6.Double.ToString(String format)