Added C# sample file

This commit is contained in:
Imre Kincses 2022-08-03 06:27:57 +02:00
parent dd03a2f406
commit 886e23e47a

10
csharp/helloworld.cs Normal file
View File

@ -0,0 +1,10 @@
namespace HelloWorld
{
class Hello
{
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}