Int128Parse Method

Produces a 128-bit integer from its string representation.

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static Int128 Parse(
	string text
)

Parameters

text  String
A string containing the base-10 representation of a 128-bit integer value.

Return Value

Int128
The 128-bit integer represented by text.

Exceptions

ArgumentNullExceptiontext was .
FormatExceptiontext did not contain a valid representation of an integer.
OverflowExceptiontext represented an integer outside the range of Int128.

See Also