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






Double.IsNaN()

  
    
Imports System                

Module MyModule

  Sub Main()
    If (Double.IsNaN("1.2")) Then
      Console.WriteLine("Not a Number.")
    End If
  End Sub
End Module

   
    
  








Related examples in the same category

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