RadixCodecTryDecode(String, UInt64) Method
Attempts to convert a radix value to an integer value.
Namespace: Gemstone.NumericAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.141 -- Release Build+e5ae2e0249fc474e157002adefe3c67e31d30852
public bool TryDecode(
string radixValue,
out ulong value
)
Public Function TryDecode (
radixValue As String,
<OutAttribute> ByRef value As ULong
) As Boolean
public:
bool TryDecode(
String^ radixValue,
[OutAttribute] unsigned long long% value
)
function TryDecode(radixValue, value);
- radixValue String
- Radix value to convert.
- value UInt64
- Decoded integer value.
Booleantrue if decode succeeds; otherwise,
false.