Type Summary

						public struct Double : IComparable, IFormattable,
                      IConvertible
 {
   // Fields
      public const double Epsilon = 4.9406564584124654E-324;
      public const double MaxValue = 1.7976931348623157E+308;
      public const double MinValue = -1.7976931348623157E+308;
      public const double NaN = (double)0.0 / (double)0.0;
      public const double NegativeInfinity = (double)-1.0 / (double)0.0;
      public const double PositiveInfinity = (double)1.0  / (double)0.0;

   // Methods
      public int CompareTo (object value);
      public override bool Equals (object obj);
      public override int GetHashCode ();
   MS
						public TypeCode GetTypeCode ();
      public static bool IsInfinity (double d);
      public static bool IsNaN (double d);
      public static bool IsNegativeInfinity (double d);
      public static bool ...

Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library 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.