You are on page 1of 2

C#

(01)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Hello
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.WriteLine("Hello Amit");
Console.WriteLine("I love c#");
Console.ReadLine();
}
}
}

(02)

You might also like