7 references to CharSize
System.Xml (7)
System\Xml\XmlEncoding.cs (7)
29
if ( flush && ( byteCount %
CharSize
!= 0 ) ) {
32
return byteCount /
CharSize
;
74
Buffer.BlockCopy( bytes, byteIndex, chars, charIndex *
CharSize
, byteCount );
100
if ( charCount *
CharSize
< byteCount ) {
101
byteCount = charCount *
CharSize
;
127
Buffer.BlockCopy( bytes, byteIndex, chars, charIndex *
CharSize
, (int)(byteCount & ~0x1) );
129
charsUsed += byteCount /
CharSize
;