SmartMemoryManagement

BufferProvider.LargeObjectTreshold Field

This is the treshold for so-called Large Objects. These objects are not stored within the three standard Heaps. All objects with a size greater 85000 bytes are stored on the Large Object Heap. This heap is collected along with the the Generation-2 heap.

[Visual Basic]
Public const LargeObjectTreshold As Integer = 85000
[C#]
public const int LargeObjectTreshold = 85000;
[C++]
public: const int LargeObjectTreshold = 85000;
[JScript]
public const var LargeObjectTreshold: int = 85000;

See Also

BufferProvider Class | InfiniTec.SystemUtilities Namespace