public void ClearingListRaisesEvents() { SuperList <double> testList = new SuperList <double>(); for (int i = 0; i < 100; i++) { testList.Add((double)i); } testList.Clear(); }