Classes

Object

Represents all types in the Common Language Runtime (CLR), providing foundational methods for all .NET objects.

View Details

String

Represents a sequence of characters. Immutable in nature.

View Details

ArrayList

Represents a dynamically sized array of objects.

View Details

File

Provides static methods for the creation, copying, deletion, moving, and opening of files.

View Details

Directory

Provides static methods for the creation, moving, and enumeration of directories and subdirectories.

View Details

StringBuilder

Represents a mutable string of characters.

View Details

Console

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

View Details

List<T>

Represents a strongly typed list of objects that can be accessed by index. Provides generic type safety.

View Details

JsonSerializer

Provides APIs to serialize objects to JSON strings and deserialize JSON strings to objects.

View Details

Exception

Represents errors that occur during runtime. The base class for all exceptions.

View Details