|   | ByteToolConvert(Byte) Method | 
        
        
            Converts bytes to a byte string.
            
        
        Namespace: GSF.Net.SnmpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static string Convert(
	byte[] buffer
)
Public Shared Function Convert ( 
	buffer As Byte()
) As String
public:
static String^ Convert(
	array<unsigned char>^ buffer
)
static member Convert : 
        buffer : byte[] -> string GSF.Net.Snmp.ByteTool.Convert = function(buffer);
Parameters
- buffer  Byte
- The bytes.
Return Value
StringThe formatted string.
 Remarks
Remarksnew byte[] { 0x80, 0x00 } is converted to "80 00".
 See Also
See Also