13.07.2015 Views

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Appendix D Standard Library}Current = 1,End = 2,// Namespace: System, Library: ExtendedNumericspublic struct Single: IComparable, IFormattable{public const float Epsilon = (float)1.401298E-45;public const float MaxValue = (float)3.402823E+38;public const float MinValue = (float)-3.402823E+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;public int CompareTo(object value);public override bool Equals(object obj);public override int GetHashCode();public static bool IsInfinity(float f);public static bool IsNaN(float f);public static bool IsNegativeInfinity(float f);public static bool IsPositiveInfinity(float f);public static float Parse(string s);public static float Parse(string s, NumberStyles style);public static float Parse(string s, IFormatProvider provider);public static float Parse(string s, NumberStyles style, IFormatProviderprovider);public string ToString(IFormatProvider provider);public string ToString(string format, IFormatProvider provider);public override string ToString();public string ToString(string format);}// Namespace: System, Library: BCLpublic sealed class StackOverflowException: SystemException{public StackOverflowException();public StackOverflowException(string message);public StackOverflowException(string message, Exception innerException);}// Namespace: System.IO, Library: BCLpublic abstract class Stream: MarshalByRefObject, IDisposable{protected Stream();public static readonly Stream Null;415

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!