Dot net Simple program example
The console base program which run the code of C# dot net program.
using System;
namespace prakashbhandari
{
class MyProgram
{
static void Main(string[] args)
{
Console.Write("Hello World");
Console.ReadKey();
/* To stop hiding the screen from user */
}
}
}
Out Put : Hello World