|
AppDomain |
Represents an application domain, which is an isolated environment in which applications run. |
|
AppDomainUnloadedException |
The exception that is thrown when an attempt is made to access an unloaded application domain. |
|
ApplicationException |
The exception that is thrown when a nonfatal application error occurs. |
|
ArgumentException |
The exception that is thrown when one of the arguments provided to a method is not valid. |
|
ArgumentNullException |
The exception that is thrown when a null reference is passed to a method that does not accept it as a valid argument. |
|
ArgumentOutOfRangeException |
The exception that is thrown when the value of an argument is outside the allowable range of values, as defined by the method that was invoked. |
|
Array |
Contains methods for creating, manipulating, searching, and sorting arrays. The Array class is therefore the base class for all arrays in the common language runtime (CLR). |
|
Attribute |
Constitutes the base class for custom attributes. |
|
AttributeUsageAttribute |
Specifies the usage of another attribute class. |
|
CLSCompliantAttribute |
Indicates whether a particular program element is compliant with the Common Language Specification (CLS). |
|
ConvertBase64 |
Converts to and from base64-encoded strings. |
|
Delegate |
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. |
|
Enum |
Constitutes the base class for enumerations. |
|
Environment |
Manages information about the operating environment. |
|
Exception |
The exception that is thrown when errors occur during application execution. |
|
FlagsAttribute |
Indicates that an enumeration can be treated as a bit field (a set of flags). |
|
GC |
Controls the system garbage collector, a service that automatically reclaims unused computer memory. |
|
IndexOutOfRangeException |
The exception that is thrown when an attempt is made to access an object in an array and the index number of that object is outside the bounds of the array. |
|
InvalidCastException |
The exception that is thrown whenever invalid casting or explicit conversion occurs. |
|
InvalidOperationException |
The exception that is thrown when a method call is invalid for a specified object's current state. |
|
MarshalByRefObject |
Provides access to objects across application domain boundaries in applications that support remoting. |
|
Math |
A small collection of common mathematical functions. |
|
MTAThreadAttribute |
This class is intended for internal use. Indicates that the COM threading model for a specific application is set to multithreaded apartment (MTA). |
|
MulticastDelegate |
Represents a multicast delegate, which is a delegate that can contain multiple elements in its invocation list. |
|
NonSerializedAttribute |
Indicates that a field of a serializable class should not be serialized. |
|
NotImplementedException |
The exception that is thrown when a requested method or operation is not implemented. |
|
NotSupportedException |
The exception that is thrown when a called method is not supported by .NET Micro Framework. |
|
NullReferenceException |
The exception that is thrown when there is an attempt to dereference a null object reference. |
|
Object |
Supports all classes in the .NET Micro Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Micro Framework; it is the root of the type hierarchy. |
|
ObjectDisposedException |
The exception that is thrown when an operation is performed on a disposed object. |
|
ObsoleteAttribute |
Marks the program elements that are no longer in use. |
|
OutOfMemoryException |
The exception that is thrown when there is not enough memory available to continue the execution of a program. |
|
ParamArrayAttribute |
Indicates that the specified method will accept a variable number of arguments in its invocation. |
|
Random |
Generates pseudo-random numbers. |
|
SerializableAttribute |
Indicates that a specified class can be serialized. |
|
STAThreadAttribute |
Indicates that the COM threading model for a specific application is set to single-threaded apartment (STA). |
|
String |
Represents a text string composed of Unicode characters. |
|
SystemException |
Constitutes the base class for predefined exceptions in the System namespace. |
|
TimeZone |
Represents a specific time zone. |
|
Type |
Represents type declarations for the following categories of types: class types, interface types, array types, value types, and enumeration types. |
|
Uri |
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts of the URI. |
|
ValueType |
Constitutes the base class for value types. |
|
Version |
Represents the version number for a common language runtime assembly. This class cannot be inherited. |
|
WeakReference |
Represents a weak reference, which references an object but still leaves it prone to garbage collection. |