Click or drag to resize

UInt128Parse Method

Creates an unsigned 128-bit integer from its string representation.

Namespace:  Meta.Numerics.Extended
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static UInt128 Parse(
	string text
)

Parameters

text
Type: SystemString
The base-10 string representation of an unsigned 128-bit integer.

Return Value

Type: UInt128
The integer value it represents.
Exceptions
ExceptionCondition
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