MSDN Documentation

Windows API Reference

Quick Navigation

Base Class Library (.NET Core & .NET 5+)

Explore fundamental types, algorithms, and application infrastructure.

Windows Forms

Build rich, interactive desktop applications for Windows.

Windows Presentation Foundation (WPF)

Create visually stunning and adaptive user interfaces.

ASP.NET (Core)

Develop modern, cloud-ready web applications and services.

Data Access

Connect to and interact with various data sources.

Networking

Build network-enabled applications.

Example: String Manipulation

A simple example using the System.String class.


using System;

public class Example
{
    public static void Main(string[] args)
    {
        string greeting = "Hello, World!";
        Console.WriteLine(greeting.ToUpper()); // Output: HELLO, WORLD!
        Console.WriteLine(greeting.Contains("World")); // Output: True
    }
}