C# test project

This commit is contained in:
anon 2023-11-28 13:58:19 +01:00
parent b0360b2317
commit 4bc1b260fe

View File

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