Name

Double

Synopsis

This represents a 64-bit double-precision floating number as a value type. The value of a double can range, approximately from -1.8x10308 to 1.8x10308 and can be set to one of the following fields: PositiveInfinity, NegativeInfinity, and NaN (not a number). This type is aliased as Double in VB.NET.

Public Structure Double : Implements IComparable, IFormattable, IConvertible
' Public Shared Fields
   Public const Epsilon As Double                                // =4.94065645841247E-324
   Public const MaxValue As Double                               // =1.79769313486232E+308
   Public const MinValue As Double                               // =-1.79769313486232E+308
   Public const NaN As Double                                    // =NaN
   Public const NegativeInfinity As Double                       // =-Infinity
   Public const PositiveInfinity As Double                       // =Infinity
                  ' Public Shared Methods
   Public Shared Function IsInfinity(
        ByVal d As Double) As Boolean  
   Public Shared Function IsNaN(ByVal d As Double) As Boolean  
   Public Shared Function IsNegativeInfinity(
        ByVal d As Double) As Boolean  
   Public Shared Function IsPositiveInfinity(
        ByVal d As Double) As Boolean  
   Public Shared Function Parse( ByVal s As String) As Double  
   Public Shared Function Parse(ByVal s As String, 
        ByVal provider As IFormatProvider) As Double  
   Public Shared Function Parse(ByVal s As String, 
        ByVal style As System.Globalization.NumberStyles) As Double  
   Public Shared Function Parse(ByVal s As String, 
        ByVal style As System.Globalization.NumberStyles, 
        ByVal provider As IFormatProvider) As Double  
   Public Shared Function TryParse(ByVal s As String, ByVal style As System.Globalization.NumberStyles, ...

Get VB.NET Core Classes in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.