Create hello.cs

还是把语言加上吧,方便第三方热榜网站获取到此repo
This commit is contained in:
lorem
2018-09-17 10:09:38 +08:00
committed by GitHub
parent 9fd93785fc
commit 8d3a1893f3

12
Test/hello.cs Normal file
View File

@ -0,0 +1,12 @@
using System;
// A "Hello World!" program in C#
namespace HelloWorld
{
class Hello
{
static void Main()
{
System.Console.WriteLine("Hello World!");
}
}
}