2 writes to _numChars
System.Web (2)
Util\HttpEncoder.cs (2)
947
_numChars
+= _encoding.GetChars(_byteBuffer, 0, _numBytes, _charBuffer, _numChars);
964
_charBuffer[
_numChars
++] = ch;
3 references to _numChars
System.Web (3)
Util\HttpEncoder.cs (3)
947
_numChars += _encoding.GetChars(_byteBuffer, 0, _numBytes, _charBuffer,
_numChars
);
988
if (
_numChars
> 0)
989
return new String(_charBuffer, 0,
_numChars
);