mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-27 22:00:23 -04:00
11 lines
257 B
C#
11 lines
257 B
C#
using System.Buffers;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public static class BigArrayPool<T>
|
|
{
|
|
private static readonly ArrayPool<T> s_shared = ArrayPool<T>.Create(64 * 1024 * 1024, 3);
|
|
public static ArrayPool<T> Shared => s_shared;
|
|
}
|
|
}
|