UInt128TryParse Method
            Attempts to parse the given string as an unsigned 128-bit integer.
            
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
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 
- text  String
- The string to parse.
- value  UInt128
- The integer value it represents.
Boolean if 
text was successfully
            parsed as an unsigned 128-bit integer, otherwise 
.