1.01: First Program Hello World..
OBJECTIVE
Create a program (in C#) to print Hello World on screen and then print your name (in a separate line).
RESOLUTION
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace My3Development
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.WriteLine("Mohammed Shiroz!");
Console.ReadKey(); }
}
}
0 comments :
Please Enter best of your Comments