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