不是真正的答案,更多的是研究评论。
我遇到了同样的问题并进行了快速测试。我尝试使用下面的代码,但无法让此代码抛出ArgumentException: Destination array was not long enough
. 但是当我.ToList()
从行中删除
return allLines.ToList().ToArray();
它立即崩溃。
这是演示代码,甚至 IDE 都告诉我,我应该删除该ToList()
调用,因为它看起来是多余的。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace ConsoleApp1
{
class Program
{
static void Main() {
List<string> thelist = new List<string>();
Thread producer = new Thread(() => {
while (true) {
thelist.Add("a" + DateTime.Now);
}
});
Thread transformer = new Thread(() => {
while (true) {
string[] thearray = thelist.ToList().ToArray();
Console.WriteLine(thearray.Length);
}
});
producer.Start();
transformer.Start();
Console.ReadKey(true);
}
}
}
我真的很想知道,为什么它不会崩溃,因为 List 也由数组支持。