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