This is my first post. Hence decided to go with the forever famous "Hello world" program :P
I started my career as a developer with this famous program. Here it goes.
Q: Console application to display "Hello World" on the screen.
Program:
using System;
namespace MyFirstApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
Output:
No comments:
Post a Comment