3 references to Parse
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (3)
131
public static UInt128 Parse(string s) =>
Parse
(s, NumberStyles.Integer, provider: null);
133
public static UInt128 Parse(string s, NumberStyles style) =>
Parse
(s, style, provider: null);
135
public static UInt128 Parse(string s, IFormatProvider? provider) =>
Parse
(s, NumberStyles.Integer, provider);