23 lines
442 B
C#
23 lines
442 B
C#
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);
|
|
}
|
|
}
|
|
} |