Comments on: With .NET 4.5, 10 years memory limit of 2 GB is over http://bhrnjica.net/2012/07/22/with-net-4-5-10-years-memory-limit-of-2-gb-is-over/ C#, C++, Math, Evolutionary Algorithms, Engineering, ... Sun, 09 Aug 2015 14:04:36 +0000 hourly 1 http://wordpress.com/ By: Tom http://bhrnjica.net/2012/07/22/with-net-4-5-10-years-memory-limit-of-2-gb-is-over/#comment-64955 Thu, 18 Jun 2015 15:27:51 +0000 http://bhrnjica.net/?p=4908#comment-64955 Can you link the source code again? It has been removed from your onedrive account.

]]>
By: Bahrudin Hrnjica http://bhrnjica.net/2012/07/22/with-net-4-5-10-years-memory-limit-of-2-gb-is-over/#comment-4195 Wed, 27 Nov 2013 16:45:17 +0000 http://bhrnjica.net/?p=4908#comment-4195 I think so.

]]>
By: rodrigo http://bhrnjica.net/2012/07/22/with-net-4-5-10-years-memory-limit-of-2-gb-is-over/#comment-4192 Wed, 27 Nov 2013 13:30:25 +0000 http://bhrnjica.net/?p=4908#comment-4192 in framework 4.5 which is the maximum limit of memory? I downloaded your example and made the following modification.

//int maxCount = 201326592;
long maxCount = 999999999;
long[] arr=null;
try
{
arr = new long[maxCount];

}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}

Result :14,9 GB

But but when I write

long maxCount = 1999999999;

An unhandled exception of type ‘System.NullReferenceException’ occurred in LargeArrays.exe.

depends on the memory RAM in my computer?

]]>
By: With .NET 4.5, 10 years memory limit of 2 GB is over - C# & .NET technologies - developers.de http://bhrnjica.net/2012/07/22/with-net-4-5-10-years-memory-limit-of-2-gb-is-over/#comment-1820 Fri, 27 Jul 2012 06:52:20 +0000 http://bhrnjica.net/?p=4908#comment-1820 […] Read more… Posted Jul 27 2012, 08:47 AM by Bahrudin Filed under: C# 5.0, .NET, .NET 4.5 […]

]]>