Converts hex byte data to normal byte data. Hex data must be in two bytes pairs, for example: 0F,FF,A3,... .
| C# | Visual Basic | Visual C++ |
[ObsoleteAttribute("Use Net_Utils.FromHex instead of it")] public static byte[] FromHex( byte[] hexData )
<ObsoleteAttribute("Use Net_Utils.FromHex instead of it")> _ Public Shared Function FromHex ( _ hexData As Byte() _ ) As Byte()
[ObsoleteAttribute(L"Use Net_Utils.FromHex instead of it")] public: static array<unsigned char>^ FromHex( array<unsigned char>^ hexData )
- hexData (array< Byte >[]()[])
- Hex data.
[Missing <returns> documentation for "M:LumiSoft.Net.Core.FromHex(System.Byte[])"]