RecyclableMemoryStream
(Created page with "Error with missing Microsoft.IO.RecyclableMemoryStream or missing System.Buffers? Add Nuget packages Microsoft.IO.RecyclableMemoryStream and nuget packages System.Buffers. T...") |
No edit summary |
||
Line 4: | Line 4: | ||
These 2 assemblies are used to minimize the memory pressure | These 2 assemblies are used to minimize the memory pressure | ||
private static ArrayPool<char> _pool = ArrayPool<char>.Shared; | |||
_pool.Rent |
Revision as of 10:22, 14 October 2019
This page was created by Hans.karlsen on 2019-10-14. Last edited by Edgar on 2025-01-20.
Error with missing Microsoft.IO.RecyclableMemoryStream or missing System.Buffers?
Add Nuget packages Microsoft.IO.RecyclableMemoryStream and nuget packages System.Buffers.
These 2 assemblies are used to minimize the memory pressure
private static ArrayPool<char> _pool = ArrayPool<char>.Shared;
_pool.Rent