From 886e23e47a6885320272097e490f635575e63fc3 Mon Sep 17 00:00:00 2001 From: Imre Kincses Date: Wed, 3 Aug 2022 06:27:57 +0200 Subject: [PATCH] Added C# sample file --- csharp/helloworld.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 csharp/helloworld.cs diff --git a/csharp/helloworld.cs b/csharp/helloworld.cs new file mode 100644 index 0000000..6bcf54b --- /dev/null +++ b/csharp/helloworld.cs @@ -0,0 +1,10 @@ +namespace HelloWorld +{ + class Hello + { + static void Main(string[] args) + { + System.Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file