Attempts to parse the given string as an unsigned 128-bit integer.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static bool TryParse(
string text,
out UInt128 value
)
Public Shared Function TryParse (
text As String,
<OutAttribute> ByRef value As UInt128
) As Boolean
public:
static bool TryParse(
String^ text,
[OutAttribute] UInt128% value
)
static member TryParse :
text : string *
value : UInt128 byref -> bool
Parameters
- text
- Type: SystemString
The string to parse. - value
- Type: Meta.Numerics.ExtendedUInt128
The integer value it represents.
Return Value
Type:
Boolean if
text was successfully
parsed as an unsigned 128-bit integer, otherwise
.
See Also