This commit is contained in:
2024-07-17 07:20:18 +02:00
parent 3e9256b983
commit bedea4caf3
264 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
namespace Exercises_C_Sharp.E29_Konstruktoren
{
class Exercise_1
{
public static void Start()
{
//Erstellen Sie ein Objekt der Klasse und sorgen Sie dafür, dass "Hello World!" auf der Konsole ausgegeben wird.
//Code Start
//Code ENDE
}
}
class Hallo
{
public Hallo(string s)
{
Console.WriteLine(s);
}
}
}