Everybody knows about the famous "Hello World!" when started programming for the 1st time.
So, today I'm going to start with sharing way on how to print "Hello World!" using C# using .NET Framework and Latest .NET 6. So, let's get started.
Requirements
For .NET Framework, Supported Windows OS Version
For .NET Core, Windows, macOS or Supported Linux Version
Visual Studio 2015-2022 | Visual Studio Code | Jetbrains Rider
Tutorial
Source Code
using System;
namespace ConsoleApp1
{
internal class Program
{
private static void Main(string[] args)
{
Console.Write("Hello World!");
}
}
}
0 Comments