| 
            
              ByteToolConvertDecimal Method
             | 
          
        
        
            Converts decimal string to bytes.
            
        
        Namespace: GSF.Net.SnmpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.257-beta
Syntaxpublic static byte[] ConvertDecimal(
	string description
)
Public Shared Function ConvertDecimal ( 
	description As String
) As Byte()
public:
static array<unsigned char>^ ConvertDecimal(
	String^ description
)
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