Welcome to .NET Framework 3.5 Documentation

Getting Started with .NET Framework 3.5

This page guides you through the initial setup and basic operations of the .NET Framework 3.5.

Let's start with a simple example: creating a new console application.

Creating a New Console Application

To create a new console application, open your solution explorer and right-click on your solution name. Select "Create > Console Application."

This will create a basic application that you can modify.

Running the Application

To run the application, open a terminal or command prompt, navigate to the root directory of your solution, and type: `dotnet run`

The application will start and you will see the 'dotnet' command in the console.

Exploring the .NET SDK

The .NET SDK is a toolkit that provides the tools and libraries you need to develop applications in .NET.

You can download it from the official .NET website: https://dotnet.microsoft.com/en-us/download