因爲顯示內存不足異常,我應該如何創建一個可以容納此範圍(在代碼中)的列表?內存不足異常C#列表
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var l1 = Enumerable.Range(999900000, 1000000000).ToList();
l1.ForEach(f => Console.WriteLine(f));
}
}
}
你運行32位或64位版本? – weismat
可能的重複[爲什麼我在C#應用程序中出現內存不足異常?](http://stackoverflow.com/questions/597499/why-am-i-getting-an-out-of-memory-exception -in-my-c-sharp-application) –
32位版本 –