Int128TryParse Method

Attempts to produce a 128-bit integer from a string representation.

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static bool TryParse(
	string text,
	out Int128 value
)

Parameters

text  String
A string containing the base-10 representation of a 128-bit integer value.
value  Int128
If the parse was successful, the 128-bit integer represented by text.

Return Value

Boolean
if the parse was successful, otherwise .

See Also