From 97462568f3dc9b348ae357011e5ae834b29e0983 Mon Sep 17 00:00:00 2001 From: lorem Date: Sat, 4 May 2019 07:53:53 +0800 Subject: [PATCH] Create helloworld.cs --- Test/helloworld.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Test/helloworld.cs diff --git a/Test/helloworld.cs b/Test/helloworld.cs new file mode 100644 index 0000000..b3e4f95 --- /dev/null +++ b/Test/helloworld.cs @@ -0,0 +1,16 @@ +// A Hello World! program in C#. +using System; +namespace HelloWorld +{ + class Hello + { + static void Main() + { + Console.WriteLine("Hello World!"); + + // Keep the console window open in debug mode. + Console.WriteLine("Press any key to exit."); + Console.ReadKey(); + } + } +}