|
RadixCodecDecodeT(String) Method
|
Converts a radix value to an integer value.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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