using System.Buffers; namespace AssetStudio { public static class BigArrayPool { public static ArrayPool Shared { get; } static BigArrayPool() { Shared = ArrayPool.Create(256 * 1024 * 1024, 5); } } }