Variable, Constant, Literals in .Net

 namespace ConsoleAppVarConstant

{

    internal class Program

    {

        static void Main(string[] args)

        {

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

            const int a=10;

            //a = 20;

            Console.WriteLine(a);

            Console.WriteLine(100+200);

        }

    }

}











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