|
ByteToolConvertDecimal Method
|
Converts decimal string to bytes.
Namespace: GSF.Net.SnmpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.205-beta
Syntax public static byte[] ConvertDecimal(
string description
)
Public Shared Function ConvertDecimal (
description As String
) As Byte()
static member ConvertDecimal :
description : string -> byte[]
GSF.Net.Snmp.ByteTool.ConvertDecimal = function(description);
View SourceParameters
- description String
- The decimal string.
Return Value
ByteThe converted bytes.
Remarks " 16 18 " is converted to new byte[] { 0x10, 0x12 }.
See Also