2 writes to _bytes
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\CallingConvention\CallingConvention_1.cs (2)
947
_bytes
??= new List<byte>(8);
1032
_bytes
??= new List<byte>(1);
4 references to _bytes
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CallingConvention\CallingConvention_1.cs (4)
943
public int Length =>
_bytes
?.Count ?? 0;
952
_bytes
.Add((byte)(_pendingByte | 0x80));
1034
_bytes
.Add((byte)(_pendingByte & 0x7F));
1036
return
_bytes
.ToArray();