6 writes to bytes
mscorlib (6)
system\text\encoding.cs (6)
1935
this.
bytes
= byteStart;
1958
bytes
-=numBytes; // Didn't encode these bytes
1983
bytes
-=numBytes; // Didn't encode these bytes
1993
bytes
+= count;
2020
return *(
bytes
++);
2072
bytes
-= byteBuffer.Length; // Didn't use how many ever bytes we're falling back
10 references to bytes
mscorlib (10)
system\text\encoding.cs (10)
1947
fallbackBuffer.InternalInitialize(
bytes
, charEnd);
1959
enc.ThrowCharsOverflow(decoder,
bytes
<= byteStart); // Throw?
1984
enc.ThrowCharsOverflow(decoder,
bytes
<= byteStart); // Throw?
2001
return
bytes
< byteEnd;
2009
return (
bytes
<= byteEnd - count);
2017
Contract.Assert(
bytes
< byteEnd, "[EncodingCharBuffer.GetNextByte]Expected more date");
2018
if (
bytes
>= byteEnd)
2028
return (int)(
bytes
- byteStart);
2069
if (fallbackBuffer.InternalFallback(byteBuffer,
bytes
, ref chars) == false)
2081
charCountResult += fallbackBuffer.InternalFallback(byteBuffer,
bytes
);