1 write to _bytes
Microsoft.NET.ProjectData.Tasks (1)
PooledCacheRender.cs (1)
118
this.
_bytes
= ArrayPool<byte>.Shared.Rent(byteCount);
4 references to _bytes
Microsoft.NET.ProjectData.Tasks (4)
PooledCacheRender.cs (4)
35
public byte[] Bytes => this.
_bytes
!;
119
this._byteLength = ProjectDataWriter.Utf8NoBom.GetBytes(this._chars, 0, this._charLength, this.
_bytes
, 0);
139
if (this.
_bytes
!= null)
140
ArrayPool<byte>.Shared.Return(this.
_bytes
);