mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-20 11:39:20 +08: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;
|
|
}
|
|
}
|