Hello World with C#

This commit is contained in:
Mert Gör 🇹🇷 2024-05-24 15:50:19 +03:00
parent 33b4ee9024
commit d85035292e
Signed by: hwpplayer1
GPG key ID: 03E547D043AB6C8F
2 changed files with 23 additions and 0 deletions

13
helloworld/Program.cs Normal file
View file

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

View file

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>