2 writes to array
Microsoft.AspNetCore.Components.Server (2)
BlazorPack\SequenceOfT.cs (2)
374this.array = array; 392this.array = null;
4 references to array
Microsoft.AspNetCore.Components.Server (4)
BlazorPack\SequenceOfT.cs (4)
329/// Will be <c>null</c> if using an array pool, in which case the memory is held by <see cref="array"/>. 336internal Memory<T> AvailableMemory => this.array ?? this.MemoryOwner?.Memory ?? default; 389if (this.array != null) 391arrayPool.Return(this.array);