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






Double.IsPositiveInfinity()

  

Imports System                

Module MyModule

  Sub Main()

    If (Double.IsPositiveInfinity("999999999999999999999999999999999")) Then
      Console.WriteLine("Positive infinity.")
    End If
  End Sub
End Module

   
    
  








Related examples in the same category

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