|
ByteToolConvert(IEnumerableChar) Method
|
Converts the byte string to bytes.
Namespace: GSF.Net.SnmpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.248-beta
Syntaxpublic static byte[] Convert(
IEnumerable<char> description
)
Public Shared Function Convert (
description As IEnumerable(Of Char)
) As Byte()
public:
static array<unsigned char>^ Convert(
IEnumerable<wchar_t>^ description
)
static member Convert :
description : IEnumerable<char> -> byte[]
GSF.Net.Snmp.ByteTool.Convert = function(description);
View SourceParameters
- description IEnumerableChar
- The HEX string.
Return Value
ByteThe converted bytes.
Remarks"80 00" is converted to new byte[] { 0x80, 0x00 }.
See Also