RadixCodecDecode(Type, String) Method
Converts a radix value to an integer value.
Namespace: Gemstone.NumericAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.156 -- Release Build+82008765a27c9679d42964f049db865fa540531c
public Object Decode(
Type type,
string radixValue
)
Public Function Decode (
type As Type,
radixValue As String
) As Object
public:
Object^ Decode(
Type^ type,
String^ radixValue
)
function Decode(type, radixValue);
- type Type
- Integer type to convert.
- radixValue String
- Radix value to convert.
ObjectDecoded 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. |