Hello World practical in .Net

 class Hello

{

public static void Main()

{

System.Console.WriteLine("Hello World");

//Here "System" is namespace, "Console" is class, "WriteLine()" is method, "csc" means csharp compiler

}

}






Comments

Popular posts from this blog

Map, MapGet, MapPost, MapPut and MapDelete methods in ASP.NET Core MVC - Routing ASP.NET

Layout View In ASP.NET Core 6 | _Layout.cshtml ASP.NET | Master Page ASP.Net Core

Attribute Routing in ASP.NET Core MVC