C#中Byte转换相关的函数
1、将一个对象转换为byte对象 public static byte GetByte(object o) { byte retInt = 0; if (o != null) { byte tmp; if (byte.TryParse(o.ToString().Trim(), out tmp)) { retInt = tmp; } } return retInt; } 2、将一个十六进制字符串转换为byte对象,字符串以0x开头 public static byte GetByteFormHex(string hexValue) { try { return Convert.ToBy
用户评论