7 references to CharSize
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\XmlEncoding.cs (7)
33
if (flush && (byteCount %
CharSize
!= 0))
37
return byteCount /
CharSize
;
89
Buffer.BlockCopy(bytes, byteIndex, chars, charIndex *
CharSize
, byteCount);
118
if (charCount *
CharSize
< byteCount)
120
byteCount = charCount *
CharSize
;
153
Buffer.BlockCopy(bytes, byteIndex, chars, charIndex *
CharSize
, (int)(byteCount & ~0x1));
155
charsUsed += byteCount /
CharSize
;