Welcome to the .NET Framework API Reference
This documentation provides detailed information about the classes, methods, properties, events, and other members of the .NET Framework. Use the navigation panel to explore various sections.
Getting Started
To begin using the .NET Framework APIs, add a reference to the appropriate assembly in your project and import the required namespaces:
using System; using System.Collections.Generic; using System.IO; // Example var list = new List<string>(); list.Add("Hello, .NET!");
Popular Classes
- System.String – Represents text as a series of Unicode characters.
- System.IO.File – Provides static methods for the creation, copying, deletion, and existence of files.
- System.Net.HttpWebRequest – Provides an HTTP-specific implementation of the WebRequest class.
Search the API
Type keywords in the search box above to find members, classes, or namespaces.