public static void VerwijderBoek(Boek _objBoek) { if (Publicatie.Boekenlijst.Contains(_objBoek)) { Publicatie.Boekenlijst.Remove(_objBoek); } else { Console.WriteLine("There a no 2 books with the same data that you have submitted"); } }
public static void NieuwBoek(Boek _objBoek) { //Probeer een boek toe te voegen try { Publicatie.Boekenlijst.Add(_objBoek); } catch (NullReferenceException) { //als het boek niks bevat moet je zeggen dat er niks in het boek zit Console.WriteLine("The Boek doesnt contain any data"); } }