From 4bc1b260fe8c4084d19b31747f2a79b5d8bf1b8f Mon Sep 17 00:00:00 2001 From: anon Date: Tue, 28 Nov 2023 13:58:19 +0100 Subject: [PATCH] C# test project --- debug/test_cs_hw/HelloWorld.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 debug/test_cs_hw/HelloWorld.cs diff --git a/debug/test_cs_hw/HelloWorld.cs b/debug/test_cs_hw/HelloWorld.cs new file mode 100644 index 0000000..fb7ef2a --- /dev/null +++ b/debug/test_cs_hw/HelloWorld.cs @@ -0,0 +1,17 @@ +using System; + +class HelloWorld +{ + public string greeting = "Hello, World!"; + + public void SayHelloWorld() + { + Console.WriteLine(greeting); + } + + static void Main() + { + HelloWorld helloWorldInstance = new HelloWorld(); + helloWorldInstance.SayHelloWorld(); + } +}