System.ArgumentException: 目标数组的长度不够。请检查 destIndex 和长度以及数组的下限。
在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length, Boolean reliable)
在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length)
在 System.Collections.Generic.List`1.CopyTo(T[] array, Int32 arrayIndex)
在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
没有看到你的代码,不知道什么问题,猜测下应该是线程的问题,不然不可能报错,List<p>是线程不完全的,ToList也是线程不完全的,你去加个锁看看,同步下操作看看
tolist有参数吗?
没有