HexToBytes() public static method

public static HexToBytes ( string hex ) : byte[]
hex string
return byte[]
 public static byte[] HexToBytes(this string s)
 {
     return(Hex.HexToBytes(s));
 }
 public static byte[] Hash(string hexData)
 {
     byte[] bytes = Hex.HexToBytes(hexData);
     return(Hash(bytes));
 }
 public static byte[] DoubleHashCheckSum(string hexData)
 {
     byte[] bytes = Hex.HexToBytes(hexData);
     return(DoubleHashCheckSum(bytes));
 }