using System; //.NET Framework Namespace
namespace HelloWorld // namespace declaration
{
class AkbTechie // Class declaration
{
static void Main(string[] args) // Main Method
{
Console.WriteLine("Hello World!"); // printing Hello World on Screen!
Console.ReadKey(); //wait for User to Press any Key to Exit
}
}
}
Output :-Hello World!
0 टिप्पणियाँ