Converts the string representation of a number in a specified style and culture-specific format to its
BigInteger equivalent.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigInteger Parse(
string s,
NumberStyles style,
IFormatProvider provider
)
Public Shared Function Parse (
s As String,
style As NumberStyles,
provider As IFormatProvider
) As BigInteger
public:
static BigInteger Parse(
String^ s,
NumberStyles style,
IFormatProvider^ provider
)
static member Parse :
s : string *
style : NumberStyles *
provider : IFormatProvider -> BigInteger
Parameters
- s
- Type: SystemString
A string containing a number to convert. - style
- Type: System.GlobalizationNumberStyles
A bitwise combination of NumberStyles values that indicates the permitted format
of s. - provider
- Type: SystemIFormatProvider
An IFormatProvider that supplies culture-specific formatting information about s.
Return Value
Type:
BigIntegerA
BigInteger equivalent to the numeric s or symbol specified in
s.
Reference