public Begrip Find(Begrip rhs) { foreach (var lhs in begrippen) { if (lhs.Equals(rhs)) return lhs; } throw new BegripNotFound(rhs.ToString()); }