13.07.2015 Views

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Appendix D Standard LibraryD. Standard LibraryA conforming <strong>C#</strong> implementation shall provide a set of types having specific semantics. For convenience,these types and their members are listed here, in alphabetical order. For a formal definition of these typesand their members, refer to ECMA-335, 2 nd edition, Common <strong>Language</strong> Infrastructure (CLI), Partition IV;Base Class Library (BCL), Extended Numerics Library, and Extended Array Library, which are included byreference in this International Standard.Type names beginning with System. are intended for use by the Standard Library: Such names notcurrently in use may be defined in a future version of this International Standard.This rest of this clause is informative.// Namespace: System, Library: BCLpublic class ApplicationException: Exception{public ApplicationException();public ApplicationException(string message);public ApplicationException(string message, Exception innerException);}// Namespace: System, Library: BCLpublic class ArgumentException: SystemException{public ArgumentException();public ArgumentException(string message);public ArgumentException(string message, Exception innerException);public ArgumentException(string message, string paramName, ExceptioninnerException);public ArgumentException(string message, string paramName);public virtual string ParamName { get; }}// Namespace: System, Library: BCLpublic class ArgumentNullException: ArgumentException{public ArgumentNullException();public ArgumentNullException(string paramName);public ArgumentNullException(string paramName, string message);}// Namespace: System, Library: BCLpublic class ArgumentOutOfRangeException: ArgumentException369

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

Saved successfully!

Ooh no, something went wrong!