public Auto(string kennzeichen, int anzahlTüren) // Konstruktor { this.kennzeichen = kennzeichen; türen = new Tür[anzahlTüren]; for (int i = 0; i < türen.Length; i++) { türen[i] = new Tür(); } }
private void button_Click(object sender, RoutedEventArgs e) { Tür t = new Tür(); t.Öffne(); bool türIstZu = t.IstGeschlossen; //t.IstGeschlossen = true; Auto a = new Auto("BI-AB 123", 4); bool b = a.IstAbfahrbereit; //Title = b.ToString(); //System.Diagnostics.Debug.WriteLine(b.ToString()); }