RadixCodecDecodeT(String) Method

Converts a radix value to an integer value.

Definition

Namespace: Gemstone.Numeric
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.137 -- Release Build+9ef5cf77e9ef187125fa132c70fc24fefa21cb79
public T Decode<T>(
	string radixValue
)

Parameters

radixValue  String
Radix value to convert.

Type Parameters

T
Integer type to convert

Return Value

T
Decoded integer value.

Exceptions

ArgumentNullExceptionRadix value is null.
ArgumentExceptionInvalid radix value character.
OverflowExceptionDecoded radix value overflowed integer type.
ArgumentOutOfRangeExceptionOnly integer types Int16, UInt16, Int24, UInt24, Int32, UInt32, Int64 and UInt64 are supported.

See Also