4 references to HexToByte
System.Net.NetworkInformation (4)
System\Net\NetworkInformation\StringParsingHelpers.Connections.cs (4)
366
addressBytes[i] = (byte)(
HexToByte
(hexAddress[(i * 2)]) * 16
367
+
HexToByte
(hexAddress[(i * 2) + 1]));
378
addressBytes[targetIndex] = (byte)(
HexToByte
(hexAddress[srcIndex * 2]) * 16
379
+
HexToByte
(hexAddress[srcIndex * 2 + 1]));