2 writes to _bytes
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\CallingConvention\CallingConvention_1.cs (2)
731
_bytes
??= new List<byte>(8);
816
_bytes
??= new List<byte>(1);
4 references to _bytes
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CallingConvention\CallingConvention_1.cs (4)
727
public int Length =>
_bytes
?.Count ?? 0;
736
_bytes
.Add((byte)(_pendingByte | 0x80));
818
_bytes
.Add((byte)(_pendingByte & 0x7F));
820
return
_bytes
.ToArray();