|
ByteEncodingHexadecimalEncodingGetBytes(String, Char) Method
|
Decodes given string back into a byte buffer.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public override byte[] GetBytes(
string hexData,
char spacingCharacter
)
Public Overrides Function GetBytes (
hexData As String,
spacingCharacter As Char
) As Byte()
abstract GetBytes :
hexData : string *
spacingCharacter : char -> byte[]
override GetBytes :
hexData : string *
spacingCharacter : char -> byte[]
function GetBytes(hexData, spacingCharacter);
View SourceParameters
- hexData String
- Encoded hexadecimal data string to decode.
- spacingCharacter Char
- Original spacing character that was inserted between encoded bytes.
Return Value
ByteDecoded bytes.
See Also