Int128TryParse Method
Attempts to produce a 128-bit integer from a string representation.
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
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
- 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.
Boolean if the parse was successful, otherwise
.