标签: c# multithreading out-of-memory
我有在循环中生成线程的代码。经过大约一千个线程,我在OutOfMemoryException调用中得到了一个thread.Start()。
OutOfMemoryException
thread.Start()
显然,de C#应用程序中有no limit on the amount of threads,而我的应用程序仅分配了约87MB的内存(根据任务管理器)。
为什么我会收到OutOfMemory异常?
OutOfMemory