System Namespace

Introduction

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.

Other classes provide services supporting data type conversion, method parameter manipulation, mathematics, remote and local program invocation, application environment management, and supervision of managed and unmanaged applications.

Using

To access types in the System namespace from C# code without having to provide fully qualified type names, include the adjoinging statement at the beginning of your source code file.

using System;

To access types in the System namespace from C++/CLI code without having to provide fully qualified type names, include the adjoining statement at the beginning of your source code file. In addition, you must compile with the /clr switch.

using namespace System;

Classes

Structures

Interfaces

Delegates

Enumerations