6 references to HexUpperChars
System.Web.Services (6)
System\Web\Services\Protocols\Scalars.cs (6)
155
sb.Append(
HexUpperChars
[(c >> 4) & 0xf]);
156
sb.Append(
HexUpperChars
[(c) & 0xf]);
161
sb.Append(
HexUpperChars
[(c >> 12) & 0xf]);
162
sb.Append(
HexUpperChars
[(c >> 8) & 0xf]);
163
sb.Append(
HexUpperChars
[(c >> 4) & 0xf]);
164
sb.Append(
HexUpperChars
[(c) & 0xf]);