UInt128Parse Method

Creates an unsigned 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 UInt128 Parse(
	string text
)

Parameters

text  String
The base-10 string representation of an unsigned 128-bit integer.

Return Value

UInt128
The integer value it represents.

Exceptions

ArgumentNullExceptiontext is .
FormatExceptiontext is not a valid base-10 representation of an unsigned integer.
OverflowExceptiontext represents an unsigned integer outside the range of UInt128.

See Also