Home
Map
MemoryFailPoint and InsufficientMemoryExceptionUse a MemoryFailPoint to ensure the system has enough memory to run code that requires that memory.
C#
This page was last reviewed on Jan 5, 2023.
MemoryFailPoint. A complex algorithm requires considerable memory—and the system should ensure it has enough before even attempting to run the algorithm.
With MemoryFailPoint, an exception is thrown if there is not enough memory. We pass an int to MemoryFailPoint. This is the number of required megabytes of memory.
An example. This program shows the MemoryFailPoint in a situation where it will always throw an exception. It tries to ensure the system has 1 million megabytes of RAM.
And The system does not have this amount of RAM. So an InsufficientMemoryException is thrown.
Exception
using System.Runtime; class Program { static void Main() { // This program for some reason needs a huge amount of memory. using (MemoryFailPoint point = new MemoryFailPoint(1000000)) { // An exception is thrown at this point. // ... The computer does not have enough memory. // ... So we do not need to execute the inner code. } } }
Unhandled Exception: System.InsufficientMemoryException: Insufficient memory to meet the expected demands of an operation, and this system is likely to never satisfy this request. If this is a 32 bit system, consider booting in 3 GB mode. at System.Runtime.MemoryFailPoint..ctor(Int32 sizeInMegabytes) at Program.Main()...
Some notes. In complex systems, MemoryFailPoint can help improve reliability. We can avoid starting a method if we estimate it will not be able to finish.
Notes, reliability. For methods that are critical and require large amounts of RAM, MemoryFailPoint is probably something that should always be used.
A summary. With MemoryFailPoint, we improve complex systems by causing "early failures" instead of possibly causing worse problems because a method starts (but does not finish) its work.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
No updates found for this page.
Home
Changes
© 2007-2024 Sam Allen.