Files
SammelmappeOOP/Simpsons/Homer.cs
2024-07-25 15:47:46 +02:00

25 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Simpsons
{
internal class Homer : Familie
{
public Homer()
{
this.vorname = " Homer";
}
public void donutsGegessen()
{
this.zähler++;
}
public void ausgabe()
{
Console.WriteLine($"{this.zähler} Dounats gegessen.");
}
}
}