"Hello, World!": How to bootstrap a C# project and dev environment

Breaking down Program.Main and using the dotnet command line

by Tim King

Table of Contents

When you’re first getting started in a new programming language or with a new development environment, you need to figure out how to install the toolchain, set up a project, and compile and run a program. This tutorial steps you through that process using C# and the .NET SDK using the classic “Hello, World!” program.1

Source code

The source code for this article is available at https://github.com/HowToCSharp/HelloWorld.

The C# code for “Hello, World”

Here is the C# code for “Hello, World”:

Console.WriteLine("Hello, World!");

Yeah, that’s pretty much it. Put that in a module called Program.cs, and you’re good to go. As you may know, C# is a class-based language, and you may be confused as to how we can have a program without a class. We’ll get back to that in a moment.

Before going there, let’s look at a variation of this program:

using System;

public class Program
{
    public static void Main(string[] args)
    {
        Console.WriteLine("Hello, World!");
    }
}

If you hop onto .NET Fiddle,2 you’ll see something similar to this by default in the code-editing window.

Let’s look at each element of this program:

Let’s go back and examine the short version of this program:

Console.WriteLine("Hello, World!");

This version doesn’t define a class or a Main method. If you have a module that contains only executable statements, as this one, the compiler will automatically wrap them in a class called Program and a Main method. This is called using top-level statements.3 Note that while this is a convenient feature, in practice, there are situations in which you will want to define a class and a Main method explicitly, for example, if you want your Program class to be in a custom namespace, or if you want to define other methods or properties in the class.

Bootstrapping the development environment and project

You can play with this code in an online C# compiler or a C# REPL, but in a real project, you’ll want to create a repository with a solution file and a project in it.

The first thing you’ll need to do is to install the .NET SDK.4 (For the following, we’ll be using .NET 8, the latest LTS version at the time of this writing.)

Creating a solution and project

The next step is to create a solution and project. Usually, you would do this using your favorite IDE or editor. Options include Visual Studio Code, Microsoft Visual Studio, and Jetbrains Rider,5 all of which provide a GUI through which to accomplish this task. For the purposes of this article, we’re going to use the dotnet command-line interface.6

dotnet new sln --name HelloWorld --output HelloWorld
dotnet new console --name HelloWorld --output HelloWorld/HelloWorld
dotnet sln HelloWorld/HelloWorld.sln add HelloWorld/HelloWorld/HelloWorld.csproj

Let’s break down these commands:

Conveniently, the sample code in the generated Program.cs file looks exactly like this:

// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

Other common types of projects

The dotnet new command can create other types of projects and other files. You can see a list of available templates by running dotnet new --list. Some other useful templates include:

There are also built-in templates for various types of applications, especially ASP.NET and Blazor web applications, and add-on “workloads” can provide additional templates.8

Building and running the project

So at this point, we can build and run the project:

dotnet run --project HelloWorld/HelloWorld/HelloWorld.csproj

This outputs the string “Hello, World!” on the console.

If you drill down to the HelloWorld/HelloWorld project directory, you’ll now see subdirectories obj, containing intermediate files generated by the compiler, and bin, containing the final application.

The .csproj file

Let’s take a closer look at HelloWorld.csproj, which we may want to manually edit at some point.9

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net8.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

</Project>

Breaking down this file:

Resources


  1. Wikipedia’s article on the “Hello, World” program ↩︎

  2. dotnetfiddle.net, an online C# compiler and runtime. ↩︎

  3. “Top-level statements - programs without Main methods” ↩︎

  4. “Download .NET” on Microsoft.com ↩︎

  5. The following articles may be useful in getting started in various development environments:

     ↩︎
  6. The dotnet new and dotnet sln commands ↩︎

  7. “global.json overview” ↩︎

  8. The dotnet workload command ↩︎

  9. ".NET project SDKs", which also briefly describes the project-file format and includes links to resources that explore it more deeply. ↩︎