Type Summary

						public struct Single : IComparable, IFormattable,
                      IConvertible
{
  // Fields
     public const float Epsilon = (float)1.4e-45;
     public const float MaxValue = (float)3.40282346638528859e+38;
     public const float MinValue = (float)-3.40282346638528859e+38;
     public const float NaN = (float)0.0 / (float)0.0;
     public const float NegativeInfinity = (float)-1.0 / (float)0.0;
     public const float PositiveInfinity = (float)1.0  / (float)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 (float f);
     public static bool IsNaN (float f);
     public static bool IsNegativeInfinity (float f);
     public static bool IsPositiveInfinity ...

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.