예제 #1
0
 public static sbyte[] HexStr2Byte(string hexStr)
 {
     return(hexStr == null ? new sbyte[0] : HwHex.DecodeHex(hexStr.ToCharArray()));
 }
예제 #2
0
 private static sbyte[] HexStr2Byte(string hex)
 {
     return(hex == null ? new sbyte[0] : HwHex.DecodeHex(hex.ToCharArray()));
 }