Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Memory

Memory<T> System.Buffers.ArrayMemoryPool< T >.ArrayMemoryPoolBuffer.Memory
get

Implements System.Buffers.IMemoryOwner< T >.

Definition at line 11 of file ArrayMemoryPool.cs.

12 {
13 get
14 {
15 T[] array = _array;
16 if (array == null)
17 {
19 }
20 return new Memory<T>(array);
21 }
22 }
static void ThrowObjectDisposedException_ArrayMemoryPoolBuffer()