|
RadixCodecDecodeT(String) Method
|
Converts a radix value to an integer value.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public T Decode<T>(
string radixValue
)
where T : struct, new(), Object
Public Function Decode(Of T As {Structure, New, Object}) (
radixValue As String
) As T
public:
generic<typename T>
where T : value class, gcnew(), Object
T Decode(
String^ radixValue
)
member Decode :
radixValue : string -> 'T when 'T : struct, new() and Object
JavaScript does not support generic types or methods.
View SourceParameters
- radixValue String
- Radix value to convert.
Type Parameters
- T
- Integer type to convert
Return Value
TDecoded integer value.
Exceptions See Also