Avoiding Out of Memory Exceptions in Visual Studio
As you may know Visual Studio requires quite a bit of memory resources, especially if your solution is fairly large and you have some Add-Ins installed. Since all Add-Ins run in the Visual Studio address space, they too add up to the Visual Studio memory use which is limited to 2GB of virtual memory. This is true even when you are running Visual Studio on a 64-bit OS because VS is still a 32-bit application.
When Visual Studio + all Add-Ins memory use gets close to the 2GB limit it throws the OutOfMemoryException which cannot be caught nor handled. Then Visual Studio closes and you lose all unsaved changes.
To address this issue to an extent you can make Visual Studio use up to 3GB of virtual memory.
First of all, tell the OS to increase the amount of user-mode memory from 2GB to 3GB. (If you are running on 64-bit, skip this step)
Next is we need to make Visual Studio large address awaer: