Create helloworld.cs

This commit is contained in:
lorem
2019-05-04 07:53:53 +08:00
committed by GitHub
parent 355752b1e4
commit 97462568f3

16
Test/helloworld.cs Normal file
View File

@ -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();
}
}
}