Visual Studio and Virtual Memory
Visual Studio reserves 1 MB of virtual memory for each of your app's threads by default. This is really more than you are ever likely to need, and virtual memory is limited to 32MB per process, so if you are running out of virtual memory, you should reduce this from 1 MB to 64K. John Eldridge explains the details here.
Comments
- Anonymous
March 29, 2006
good - Anonymous
April 11, 2006
How can I set the Stack reserved size for a managed project, if at all ?