Decode a hex-encoded string
public static byte[] FromHex( this string s )
<ExtensionAttribute> Public Shared Function FromHex ( s As String ) As Byte()
byte[] b = "00010203".FromHex(); // { 0x00, 0x01, 0x02, 0x03 };
[Contents] [Index]