C# test project
This commit is contained in:
parent
b0360b2317
commit
4bc1b260fe
17
debug/test_cs_hw/HelloWorld.cs
Normal file
17
debug/test_cs_hw/HelloWorld.cs
Normal 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();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user