From d85035292e7544c89baf8d3e02a1cac7b7c53c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Fri, 24 May 2024 15:50:19 +0300 Subject: [PATCH] Hello World with C# --- helloworld/Program.cs | 13 +++++++++++++ helloworld/helloworld.csproj | 10 ++++++++++ 2 files changed, 23 insertions(+) create mode 100644 helloworld/Program.cs create mode 100644 helloworld/helloworld.csproj diff --git a/helloworld/Program.cs b/helloworld/Program.cs new file mode 100644 index 0000000..131fcd6 --- /dev/null +++ b/helloworld/Program.cs @@ -0,0 +1,13 @@ +// See https://aka.ms/new-console-template for more information +// Console.WriteLine("Hello, World!"); + +namespace CSD +{ + class App + { + public static void Main() + { + System.Console.WriteLine("Hello World with C#"); + } + } +} diff --git a/helloworld/helloworld.csproj b/helloworld/helloworld.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/helloworld/helloworld.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + +