DEV Community

Discussion on: Learn C# Programming with Me (Introduction)

Collapse
 
saint4eva profile image
saint4eva

using System;

Console.WriteLine("Hello, World!);

Collapse
 
faranaiki profile image
Muhammad Faran Aiki

Namespace live matters in C#.

Thread Thread
 
saint4eva profile image
saint4eva

The above code snippet is correct. It is a new C# featrue called Top-Level program. It is supports .NET 5

Thread Thread
 
faranaiki profile image
Muhammad Faran Aiki

I did not know that; yes, you are right. When I try to compile it in .NET 5 in dotnet.microsoft.com/platform/try-..., it is working.

Thread Thread
 
saint4eva profile image
saint4eva

Yes, the .NET team is simplifying C# and making it even more succient and pleasant to use. The team is simplifying the asp.net core framework as well.