10 references to Parse
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (1)
1058return Byte.Parse(s, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);
ILAssembler (1)
GrammarVisitor.cs (1)
2813builder.Add(byte.Parse(@byte.Symbol.Text, NumberStyles.AllowHexSpecifier, CultureInfo.InvariantCulture));
NuGet.Packaging (1)
Signing\Timestamp\Rfc3161TimestampUtils.cs (1)
116bytes[i / 2] = byte.Parse(s, NumberStyles.HexNumber, null);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\ByteConverter.cs (1)
29return byte.Parse(value, NumberStyles.Integer, formatInfo);
System.DirectoryServices.AccountManagement (1)
System\DirectoryServices\AccountManagement\Utils.cs (1)
98byte b = byte.Parse(s.Substring(i * 2, 2), NumberStyles.AllowHexSpecifier, CultureInfo.InvariantCulture);
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (3)
96public static byte Parse(string s) => Parse(s, NumberStyles.Integer, provider: null); 98public static byte Parse(string s, NumberStyles style) => Parse(s, style, provider: null); 100public static byte Parse(string s, IFormatProvider? provider) => Parse(s, NumberStyles.Integer, provider);
System.Private.Xml (1)
System\Xml\XmlConvert.cs (1)
893return byte.Parse(s, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);
System.ServiceModel.Primitives (1)
Internals\System\Runtime\Remoting\SoapHexBinary.cs (1)
69b = Byte.Parse(s, NumberStyles.HexNumber, CultureInfo.InvariantCulture);