This .Net error typically occurs when the underlying collection is modified during enumeration. For example if you remove items from the collection while enumerating the collection. It can also happen when you're accessing a collection while adding to the collection. See if you can see the bug in the...
Continue reading "Collection was modified; enumeration operation may not execute."