在我朋友的代码中,他有一个List
:
List<int> listOfIds = new List<int>();
然后我用来AddRange()
向它添加一个 int 集合:
listOfIds.AddRange(this._employeeList
.Where(r => r.EmployeeID != null)
.Select(r => r.EmployeeID != null ? r.EmployeeID.Value : 0));
但是,在日志中,它说:
System.IndexOutOfRangeException: Index was outside the bounds of the array.
at System.Collections.Generic.List`1.Enumerator.MoveNext()
at System.Linq.Enumerable.WhereSelectListIterator`2.MoveNext()
at System.Collections.Generic.List`1.InsertRange(Int32 index, IEnumerable`1 collection)
at the method which called the codes above.....
我不太确定为什么会这样。我很确定这个错误发生在上面的代码上,但我似乎无法理解为什么IndexOutofRangeException
会出现。
你能帮我指出是什么原因造成的吗?
更新:
我错了。我很抱歉。该方法不使用多线程。但是,另一种调用此方法的方法是使用 Parallel.Foreach,这意味着多线程。可能当 _employeeList 被用作 AddRange() 的源时,另一个线程也在修改它。因此,addrange() 不是线程安全的答案是合理的。十分感谢大家。