HexToBytes() 공개 정적인 메소드

public static HexToBytes ( string hex ) : byte[]
hex string
리턴 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));
 }