Collection was modified, enumeration operation may not execute 报错
C# 报错:Collection was modified; enumeration operation may not execute【已解决】出现这个异常往往是在遍历 List 的过程中,因为在其他位置对 List 进行了修改(增、删、改),导致在遍历的时候出现 InvalidOperationException 的异常。这个情况大多出现在多线程操作同一个 List 的时候。为了避免出现这个问题,我们可以给操作进行加锁,在获取锁时才能进行相应的操作,示例如下: public class