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.

<strong>C#</strong> LANGUAGE SPECIFICATION}// Namespace: System.Collections, Library: BCLpublic interface IList: ICollection, IEnumerable{int Add(object value);void Clear();bool Contains(object value);int IndexOf(object value);void Insert(int index, object value);void Remove(object value);void RemoveAt(int index);bool IsFixedSize { get; }bool IsReadOnly { get; }object this[int index] { get; set; }}// Namespace: System, Library: BCLpublic sealed class IndexOutOfRangeException: SystemException{public IndexOutOfRangeException();public IndexOutOfRangeException(string message);public IndexOutOfRangeException(string message, Exception innerException);}// Namespace: System, Library: BCLpublic struct Int16: IComparable, IFormattable{public const short MaxValue = 32767;public const short MinValue = -32768;public int CompareTo(object value);public override bool Equals(object obj);public override int GetHashCode();public static short Parse(string s);public static short Parse(string s, NumberStyles style);public static short Parse(string s, IFormatProvider provider);public static short 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);}402

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

Saved successfully!

Ooh no, something went wrong!