From 8d3a1893f3437f56db7b49118b6c7a3e6c071dee Mon Sep 17 00:00:00 2001 From: lorem Date: Mon, 17 Sep 2018 10:09:38 +0800 Subject: [PATCH] Create hello.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 还是把语言加上吧,方便第三方热榜网站获取到此repo --- Test/hello.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Test/hello.cs diff --git a/Test/hello.cs b/Test/hello.cs new file mode 100644 index 0000000..09d1c00 --- /dev/null +++ b/Test/hello.cs @@ -0,0 +1,12 @@ +using System; +// A "Hello World!" program in C# +namespace HelloWorld +{ + class Hello + { + static void Main() + { + System.Console.WriteLine("Hello World!"); + } + } +}