Attempts to produce a 128-bit integer from a string representation.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static bool TryParse(
string text,
out Int128 value
)
Public Shared Function TryParse (
text As String,
<OutAttribute> ByRef value As Int128
) As Boolean
public:
static bool TryParse(
String^ text,
[OutAttribute] Int128% value
)
static member TryParse :
text : string *
value : Int128 byref -> bool
Parameters
- text
- Type: SystemString
A string containing the base-10 representation of a 128-bit integer value. - value
- Type: Meta.Numerics.ExtendedInt128
If the parse was successful, the 128-bit integer represented by text.
Return Value
Type:
Boolean if the parse was successful, otherwise
.
See Also