In my C# app I use gcAllowVeryLargeObjects because I am doing image processing with large datasets, resulting in extensive RAM usage. Now I want to write some UnitTests and I am running into the same situations I had without…
I'm a little bit out of ideas. With the following code I try to instace a byte array > than 2GB:
var b = Array.CreateInstance(typeof(byte), uint.MaxValue);
Every time it will cause an System.ArgumentOutOfRangeException excpetion with the message…
Due to the ~2.15 billion element limitation with the .NET Framework (even taking into account 64bit Windows, .NET 4.5+, and gcAllowVeryLargeObjects), I needed to create my own BigStringBuilder to manipulate extremely large strings.
Unfortunately,…
In my C# code, I need to include a matrix in size 13805*55223; which I believe is not that large.
To overcome RAM limitation, I am using gcAllowVeryLargeObjects, and I have also unchecked prefer 32-Bit system.
Doing all of that, I still face "Array…