System Namespace

Provides fundamental classes and base types that define value types, reference types, exceptions, arithmetic operations, type conversions, event accesses, context and thread-bound storage, and base classes for attributes and exceptions. This namespace is the root of the .NET type system.

Classes

Object Class

Provides instance members that are available to all other classes; it is the ultimate base class of all types in the .NET Framework.

String Class

Represents text as a sequence of code points. String is an immutable type.

Exception Class

Represents errors that occur during execution.

Console Class

Provides access to the standard input, output, and error streams for console applications.

Structs

Int32 Struct

Represents a 32-bit signed integer.

Boolean Struct

Represents a Boolean value that is represented by true or false.

Interfaces

IDisposable Interface

Provides a mechanism for releasing unmanaged resources.

Enums

ConsoleColor Enum

Specifies the colors used for the foreground and background of the console.

Delegates

Action Delegate

Represents a delegate that encapsulates a method that does not return a value or takes no arguments.