RadixCodecDecodeT(String) Method
Converts a radix value to an integer value.
Namespace: Gemstone.NumericAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.165 -- Release Build+fed221202c0e8c0202a8935c553b1d6d74b53316
public T Decode<T>(
string radixValue
)
Public Function Decode(Of T) (
radixValue As String
) As T
public:
generic<typename T>
T Decode(
String^ radixValue
)
JavaScript does not support generic types or methods.
- radixValue String
- Radix value to convert.
- T
- Integer type to convert
TDecoded integer value.
| ArgumentNullException | Radix value is null. |
| ArgumentException | Invalid radix value character. |
| OverflowException | Decoded radix value overflowed integer type. |
| ArgumentOutOfRangeException | Only integer types Int16, UInt16, Int24, UInt24, Int32, UInt32, Int64 and UInt64 are supported. |