System namespace
The System namespace contains fundamental classes and base classes that define commonly used value and reference data types, events and event handlers, interfaces, attributes, and processing exceptions.
This topic displays the types in the System namespace that are included in the .NET for Windows Store apps. Note that the .NET for Windows Store apps does not include all the members of each type. For information about individual types, see the linked topics. The documentation for a type indicates which members are included in the .NET for Windows Store apps.
System namespace
Types supported in the .NET for Windows Store apps |
Description |
---|---|
Encapsulates a method that has no parameters and does not return a value. |
|
Encapsulates a method that has a single parameter and does not return a value. |
|
Encapsulates a method that has two parameters and does not return a value. |
|
Encapsulates a method that has three parameters and does not return a value. |
|
Encapsulates a method that has four parameters and does not return a value. |
|
Encapsulates a method that has five parameters and does not return a value. |
|
Encapsulates a method that has six parameters and does not return a value. |
|
Encapsulates a method that has seven parameters and does not return a value. |
|
Encapsulates a method that has eight parameters and does not return a value. |
|
Encapsulates a method that has nine parameters and does not return a value. |
|
Encapsulates a method that has ten parameters and does not return a value. |
|
Encapsulates a method that has eleven parameters and does not return a value. |
|
Encapsulates a method that has twelve parameters and does not return a value. |
|
Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> |
Encapsulates a method that has thirteen parameters and does not return a value. |
Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> |
Encapsulates a method that has fourteen parameters and does not return a value. |
Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> |
Encapsulates a method that has fifteen parameters and does not return a value. |
Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> |
Encapsulates a method that has sixteen parameters and does not return a value. |
Contains methods to create types of objects locally or remotely, or obtain references to existing remote objects. This class cannot be inherited. |
|
Represents one or more errors that occur during application execution. |
|
The exception that is thrown when one of the arguments provided to a method is not valid. |
|
The exception that is thrown when a null reference is passed to a method that does not accept it as a valid argument. |
|
The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method. |
|
The exception that is thrown for errors in an arithmetic, casting, or conversion operation. |
|
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the base class for all arrays in the common language runtime. |
|
Delimits a section of a one-dimensional array. |
|
The exception that is thrown when an attempt is made to store an element of the wrong type within an array. |
|
References a method to be called when a corresponding asynchronous operation completes. |
|
Represents the base class for custom attributes. |
|
Specifies the application elements on which it is valid to apply an attribute. |
|
Specifies the usage of another attribute class. This class cannot be inherited. |
|
The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. |
|
Converts base data types to an array of bytes, and an array of bytes to base data types. |
|
Represents a Boolean value. |
|
Manipulates arrays of primitive types. |
|
Represents an 8-bit unsigned integer. |
|
Represents a Unicode character. |
|
Indicates whether a program element is compliant with the Common Language Specification (CLS). This class cannot be inherited. |
|
Represents the method that compares two objects of the same type. |
|
Converts a base data type to another base data type. |
|
The exception that is thrown when a unit of data is read from or written to an address that is not a multiple of the data size. This class cannot be inherited. |
|
Represents an instant in time, typically expressed as a date and time of day. |
|
Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. |
|
Represents a point in time, typically expressed as a date and time of day, relative to Coordinated Universal Time (UTC). |
|
Specifies the day of the week. |
|
Represents a decimal number. |
|
Represents a delegate, which is a data structure that refers to a static method or to a class instance and an instance method of that class. |
|
The exception that is thrown when there is an attempt to divide an integral or decimal value by zero. |
|
The exception that is thrown when a DLL specified in a DLL import cannot be found. |
|
Represents a double-precision floating-point number. |
|
Provides the base class for enumerations. |
|
Provides information about, and means to manipulate, the current environment and platform. This class cannot be inherited. |
|
Represents the base class for classes that contain event data. |
|
Represents the method that will handle an event that has no event data. |
|
Represents the method that will handle an event. |
|
Represents errors that occur during application execution. |
|
Indicates that an enumeration can be treated as a bit field; that is, a set of flags. |
|
The exception that is thrown when the format of an argument does not meet the parameter specifications of the invoked method. |
|
Encapsulates a method that has no parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has two parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has three parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has four parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has five parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has six parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has seven parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has eight parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has nine parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has ten parameters and returns a value of the type specified by the TResult parameter. |
|
Encapsulates a method that has eleven parameters and returns a value of the type specified by the TResult parameter. |
|
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult> |
Encapsulates a method that has twelve parameters and returns a value of the type specified by the TResult parameter. |
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult> |
Encapsulates a method that has thirteen parameters and returns a value of the type specified by the TResult parameter. |
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult> |
Encapsulates a method that has fourteen parameters and returns a value of the type specified by the TResult parameter. |
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult> |
Encapsulates a method that has fifteen parameters and returns a value of the type specified by the TResult parameter. |
Controls the system garbage collector, which is a service that automatically reclaims unused memory. |
|
Specifies the behavior for a forced garbage collection. |
|
Represents a globally unique identifier (GUID). |
|
Represents the status of an asynchronous operation. |
|
Defines a generalized type-specific comparison method that a value type or class implements to order or sort its instances. |
|
Defines a generalized comparison method that a value type or class implements to create a type-specific comparison method for ordering instances. |
|
Defines a method that supports custom formatting of the value of an object. |
|
Defines a method to release allocated resources. |
|
Defines a generalized method that a value type or class implements to create a type-specific method for determining equality of instances. |
|
Provides a mechanism for retrieving an object to control formatting. |
|
Provides functionality to format the value of an object into a string representation. |
|
The exception that is thrown when an attempt is made to access an element of an array with an index that is outside the bounds of the array. This class cannot be inherited. |
|
Represents a 16-bit signed integer. |
|
Represents a 32-bit signed integer. |
|
Represents a 64-bit signed integer. |
|
A platform-specific type that is used to represent a pointer or a handle. |
|
The exception that is thrown for invalid casting or explicit conversion. |
|
The exception that is thrown when a method call is invalid for the object's current state. |
|
The exception that is thrown when time zone information is invalid. |
|
Defines a provider for push-based notification. |
|
Provides a mechanism for receiving push-based notifications. |
|
Defines a provider for progress updates. |
|
Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects. |
|
Provides support for lazy initialization. |
|
Provides a lazy indirect reference to an object and its associated metadata for use by the Managed Extensibility Framework. |
|
Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions. |
|
The exception that is thrown when an attempt to access a class member fails. |
|
Specifies how mathematical rounding methods should process a number that is midway between two numbers. |
|
The exception that is thrown when there is an attempt to dynamically access a class member that does not exist. |
|
Indicates that the COM threading model for an application is multithreaded apartment (MTA). |
|
Represents a multicast delegate; that is, a delegate that can have more than one element in its invocation list. |
|
The exception that is thrown when a requested method or operation is not implemented. |
|
The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality. |
|
Supports a value type that can be assigned null like a reference type. This class cannot be inherited. |
|
Represents an object whose underlying type is a value type that can also be assigned null like a reference type. |
|
The exception that is thrown when there is an attempt to dereference a null object reference. |
|
Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy. |
|
The exception that is thrown when an operation is performed on a disposed object. |
|
Marks the program elements that are no longer in use. This class cannot be inherited. |
|
The exception that is thrown in a thread upon cancellation of an operation that the thread was executing. |
|
The exception that is thrown when there is not enough memory to continue the execution of a program. |
|
The exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow. |
|
Indicates that a method will allow a variable number of arguments in its invocation. This class cannot be inherited. |
|
The exception that is thrown when a feature does not run on a particular platform. |
|
Represents the method that defines a set of criteria and determines whether the specified object meets those criteria. |
|
Provides an IProgress<T> that invokes callbacks for each reported progress value. |
|
Represents a pseudo-random number generator, a device that produces a sequence of numbers that meet certain statistical requirements for randomness. |
|
The exception that is thrown when an array with the wrong number of dimensions is passed to a method. |
|
Represents a field using an internal metadata token. |
|
Provides a handle to the internal metadata representation of a method. |
|
Represents a type using an internal metadata token. |
|
Represents an 8-bit signed integer. |
|
Represents a single-precision floating-point number. |
|
Indicates that the COM threading model for an application is single-threaded apartment (STA). |
|
Represents text as a series of Unicode characters. |
|
Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules. |
|
Specifies the culture, case, and sort rules to be used by certain overloads of the Compare and Equals methods. |
|
Specifies whether applicable Split method overloads include or omit empty substrings from the return value. |
|
Indicates that the value of a static field is unique for each thread. |
|
The exception that is thrown when the time allotted for a process or operation has expired. |
|
Represents a time interval. |
|
Represents any time zone in the world. |
|
Provides static methods for creating tuple objects. |
|
Represents a 1-tuple, or singleton. |
|
Represents a 2-tuple, or pair. |
|
Represents a 3-tuple, or triple. |
|
Represents a 4-tuple, or quadruple. |
|
Represents a 5-tuple, or quintuple. |
|
Represents a 6-tuple, or sextuple. |
|
Represents a 7-tuple, or septuple. |
|
Represents an n-tuple, where n is 8 or greater. |
|
Represents type declarations: class types, interface types, array types, value types, enumeration types, type parameters, generic type definitions, and open or closed constructed generic types. |
|
The exception that is thrown when a method attempts to use a type that it does not have access to. |
|
The exception that is thrown as a wrapper around the exception thrown by the class initializer. This class cannot be inherited. |
|
The exception that is thrown when type-loading failures occur. |
|
Represents a 16-bit unsigned integer. |
|
Represents a 32-bit unsigned integer. |
|
Represents a 64-bit unsigned integer. |
|
A platform-specific type that is used to represent a pointer or a handle. |
|
The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error. |
|
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts of the URI. |
|
Provides a custom constructor for uniform resource identifiers (URIs) and modifies URIs for the System.Uri class. |
|
Specifies the parts of a Uri. |
|
Controls how URI information is escaped. |
|
Defines host name types for the CheckHostName method. |
|
Defines the kinds of URIs for the IsWellFormedUriString and several URI constructor methods. |
|
Provides the base class for value types. |
|
Represents the version number of an assembly, operating system, or the common language runtime. This class cannot be inherited. |
|
Specifies a return value type for a method that does not return a value. |
|
Represents a weak reference, which references an object while still allowing that object to be reclaimed by garbage collection. |
|
Represents a typed weak reference, which references an object while still allowing that object to be reclaimed by garbage collection. |
|
Provides extension methods for working with the Windows Runtime. |