BigInteger.Parse(String, IFormatProvider) Method

Converts the string representation of a number in a specified culture-specific format to its BigInteger equivalent.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigInteger Parse(
	string s,
	IFormatProvider provider
)

Parameters

s  String
A string containing a number to convert.
provider  IFormatProvider
An IFormatProvider that supplies culture-specific formatting information about s.

Return Value

BigInteger
A BigInteger equivalent to the numeric s or symbol specified in s.

Exceptions

ArgumentNullExceptions is null.
FormatExceptions is not a number in a valid format.

See Also