Delete helloworld.cs

This commit is contained in:
hoodiearon
2019-06-08 19:37:38 +08:00
committed by GitHub
parent 9eb5b3ea67
commit 23ff54d171

View File

@ -1,16 +0,0 @@
// 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();
}
}
}