.NET Out Of Memory Exception - Used 1.3GB but have 16GB installed

C#.NetOut of-Memory

C# Problem Overview


I am getting an Out Of Memory exception in my C# application when the memory usage for the application goes over about 1.3GB.

I had this same problem on a 32-bit machine with 3GB of memory and it made sense back then. But now I upgraded the hardware to a 64-bit machine with 16GB memory using a high-end motherboard and high-end RAM, but the Out Of Memory exception still occurs after 1.3GB!

I know that there are no single objects over 2GB and 1.3 is less than 2GB anyway, so the built-in MS 2GB limit on a single object is not likely to be the problem.

It seems like there is a Windows kill-switch of some sort when an app reaches a certain memory usage threshold. Then there should be a way to configure this. Is it in the registry perhaps?

Any help will be greatly appreciated!

C# Solutions


Solution 1 - C#

There is no difference until you compile to same target architecture. I suppose you are compiling for 32 bit architecture in both cases.

It's worth mentioning that [OutOfMemoryException][1] can also be raised if you get 2GB of memory allocated by a single collection in [CLR][2] (say [List<T>][3]) on both architectures 32 and 64 bit.

To be able to benefit from memory goodness on 64 bit architecture, you have to compile your code targeting 64 bit architecture. After that, naturally, your binary will run only on 64 bit, but will benefit from possibility having more space available in RAM.

[1]: https://msdn.microsoft.com/en-us/library/system.outofmemoryexception.aspx "MSDN" [2]: https://msdn.microsoft.com/en-us/library/8bs2ecf4.aspx "MSDN" [3]: https://msdn.microsoft.com/en-us/library/6sh2ey19.aspx "MSDN"

Solution 2 - C#

As already mentioned, compiling the app in x64 gives you far more available memory.

But in the case one must build an app in x86, there is a way to raise the memory limit from 1,2GB to 4GB (which is the actual limit for 32 bit processes):

In the VC/bin folder of the Visual Studio installation directory, there must be an editbin.exe file. So in my default installation I find it under

C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\editbin.exe

In order to make the program work, maybe you must execute vcvars32.bat in the same directory first. Then a

editbin /LARGEADDRESSAWARE <your compiled exe file>

is enough to let your program use 4GB RAM. <your compiled exe file> is the exe, which VS generated while compiling your project.

If you want to automate this behavior every time you compile your project, use the following Post-Build event for the executed project:

if exist "$(DevEnvDir)..\tools\vsvars32.bat" (
   call "$(DevEnvDir)..\tools\vsvars32.bat"
   editbin /largeaddressaware "$(TargetPath)"
)

Sidenote: The same can be done with the devenv.exe to let Visual Studio also use 4GB RAM instead of 1.2GB (but first backup the old devenv.exe).

Solution 3 - C#

Its worth mentioning that the default for an 'Any CPU' compile now checks the 'Prefer 32bit' check box. Being set to AnyCPU, on a 64bit OS with 16gb of RAM can still hit an out of memory exception at 2gb if this is checked.

Prefer32BitCheckBox

Solution 4 - C#

It looks like you have a 64bit arch, fine -- but a 32bit version of the .NET runtime and/or a 32bit version of Windows.

And as such, the address space available to your process is still the same, it has not changed from your previous setup.

Upgrade to both a 64bit OS and a 64bit .NET version ;)

Solution 5 - C#

Is your application running as a 64 or 32bit process? You can check this in the task manager.

It could be, it is running as 32bit, even though the entire system is running on 64bit.

If 32bit, a third party library could be causing this. But first make sure your application is compiling for "Any CPU", as stated in the comments.

Solution 6 - C#

If you have 32-bit Windows, this method is not working without following settings.

> 1. Run prompt cmd.exe (important : Run As Administrator) > 2. type bcdedit.exe and run > 3. Look at the "increaseuserva" params and there is no then write following statement > 4. bcdedit /set increaseuserva 3072 > 5. and again step 2 and check params

We added this settings and this block started.

if exist "$(DevEnvDir)..\tools\vsvars32.bat" (
   call "$(DevEnvDir)..\tools\vsvars32.bat"
   editbin /largeaddressaware "$(TargetPath)"
)

More info - command increaseuserva: https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/bcdedit--set

Solution 7 - C#

If you just want to provide access to more memory for a specific 32 bit app outside of VS, there is a useful application at https://github.com/cybertechniques/site/blob/master/analysis_tools/cff-explorer/index.md which will set the apps headers for you.

  • Download "CFF Explorer" from the NT Core site or CFF Explorer file.
  • Launch "CFF Explorer" and open the EXE (e.g. C:\Users\dennisg\AppData\Local\Apps\2.0\MHV1WDDC.958Y0ELE416.L7Y\myapp.exe)
  • List item

In the left side of the window, choose the "File Header" section under "Nt Headers" Look on the right side for the row starting with "Characteristics", and the "Click here" field. Click there. (A context menu appears for the next part). Select/enable the checkbox for "App can handle >2gb addresses" and click 'OK'. Save the file (File > Save).

Solution 8 - C#

if you're searching for the tools folder in a newer Version of Visual Studio (2017, 2019), I've got it under

C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools

and the files' name is VsDevCmd.bat from Visual Studio 2017 on and later.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPacemanView Question on Stackoverflow
Solution 1 - C#TigranView Answer on Stackoverflow
Solution 2 - C#DestyView Answer on Stackoverflow
Solution 3 - C#tonycouplandView Answer on Stackoverflow
Solution 4 - C#fgeView Answer on Stackoverflow
Solution 5 - C#JaccoView Answer on Stackoverflow
Solution 6 - C#Mehmet KurtView Answer on Stackoverflow
Solution 7 - C#statlerView Answer on Stackoverflow
Solution 8 - C#Julian MüllerView Answer on Stackoverflow