4 references to maxBytesPerChar
dotnet-svcutil-lib (4)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryWriter.cs (4)
404
if (charCount < 128 /
maxBytesPerChar
)
411
byte[] buffer = GetBuffer(1 + charCount *
maxBytesPerChar
, out offset);
699
if (charCount <= byte.MaxValue /
maxBytesPerChar
)
705
byte[] buffer = GetBuffer(1 + 1 + charCount *
maxBytesPerChar
, out offset);