2 writes to _bytes
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\CallingConvention\CallingConvention_1.cs (2)
924
_bytes
??= new List<byte>(8);
1009
_bytes
??= new List<byte>(1);
4 references to _bytes
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CallingConvention\CallingConvention_1.cs (4)
920
public int Length =>
_bytes
?.Count ?? 0;
929
_bytes
.Add((byte)(_pendingByte | 0x80));
1011
_bytes
.Add((byte)(_pendingByte & 0x7F));
1013
return
_bytes
.ToArray();