4 references to ToByte
PresentationCore (1)
MS\Internal\IO\Packaging\DeobfuscatingStream.cs (1)
340
guidBytes[i] = Convert.
ToByte
(wellFormedGuidString.Substring(i * 2, 2), 16);
ReachFramework (1)
Serialization\XpsFontSubsetter.cs (1)
685
guidByteArray[i] = Convert.
ToByte
(guidString.Substring(i * 2, 2), 16);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\ByteConverter.cs (1)
22
internal override object FromString(string value, int radix) => Convert.
ToByte
(value, radix);
System.DirectoryServices (1)
System\DirectoryServices\DirectoryEntry.cs (1)
207
intGuid[j] = Convert.
ToByte
(new string(new char[] { guid[j * 2], guid[j * 2 + 1] }), 16);