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