I wanna use more than 1.2 GB RAM.
So I tried the editbin /LAGEADRESSAWARE
command.
The command executes with no error but still I get out of memory exceptions at 1.2 GB.
Now I ask myself: I have several exe files in my project. Which exe file(s) must be processed:
- all exe files
- the entry assembly [1]
- the executing assembly [1]
[1]: Term entry/executing as defined in System.Reflection.Assembly.GetEntryAssembly/GetExecutingAssembly)
I tried 2) and 3) and it has no effect.
The output of the editbin
is just:
2> Microsoft (R) COFF/PE Editor Version 11.00.61030.0
2> Copyright (C) Microsoft Corporation. All rights reserved.
Is this the right output?
You tried to allocate a single byte array to determine how much memory you could allocate. Single arrays are limited to 2^30 elements. /LARGEADDRESSAWARE doesn't change that.
Try allocating a list of 100mb arrays.