private void EditFolge(Folge Current) { FolgeEdit Edit = new FolgeEdit((Folge)Current.Clone()); if ((bool)Edit.ShowDialog()) { Staffel CurrentStaffel = (Staffel)cbStaffeln.SelectedItem; CurrentStaffel.Folgen.Replace(Current, (Folge)Edit.Return); } }