Sorry, but there are no more tags available to filter with.
-
As most of you know, changing collection while iterating is strictly forbidden. Or, actually – not forbidden, but gets us into serious problems, which ends up with an exception. As an example: List<int> ints = new List<int>(); ints.Add(1); ints.Add(2); ints.Add(3); ints.Add(4); ints.Add(5...