|
ByteToolConvert(Byte) Method
|
Converts bytes to a byte string.
Namespace: GSF.Net.SnmpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.248-beta
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);
View SourceParameters
- buffer Byte
- The bytes.
Return Value
StringThe formatted string.
Remarksnew byte[] { 0x80, 0x00 } is converted to "80 00".
See Also