Skip to content

Commit d1743aa

Browse files
AnupKumarGuptat2013anurag
authored andcommitted
Adds Hello World Program in C#
1 parent 8a8d06c commit d1743aa

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

hello_world/hello_world.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace ConsoleApplication1
6+
{
7+
class Program
8+
{
9+
static void Main(string[] args)
10+
{
11+
Console.WriteLine("Hello World");
12+
Console.ReadLine();
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)