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, Library: BCLpublic interface ICloneable{object Clone();}// Namespace: System.Collections, Library: BCLpublic interface ICollection: IEnumerable{void CopyTo(Array array, int index);int Count { get; }bool IsSynchronized { get; }object SyncRoot { get; }}// Namespace: System, Library: BCLpublic interface IComparable{int CompareTo(object obj);}// Namespace: System.Collections, Library: BCLpublic interface IComparer{int Compare(object x, object y);}// Namespace: System.Collections, Library: BCLpublic interface IDictionary: ICollection, IEnumerable{void Add(object key, object value);void Clear();bool Contains(object key);IDictionaryEnumerator GetEnumerator();void Remove(object key);bool IsFixedSize { get; }bool IsReadOnly { get; }object this[object key] { get; set; }ICollection Keys { get; }ICollection Values { get; }}400

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

Saved successfully!

Ooh no, something went wrong!