摘要: int index = 0; int setCharCount = 74; string str1 = "三星 SCH-I829 电信3G手机(优雅白)CDMA2000/GSM 双模双待双通"; byte[] bt = new ASCIIEncoding().GetBytes(str1); if (bt.Length > setCharCount)//当超过需要的字节时 { Array.Resize(ref bt, setCharCount);//获取需要长度的字节 for (int i = 0; i < bt.Length; i++) if (bt[i] == 阅读全文
posted @ 2013-12-09 22:44 wfpanskxin 阅读(676) 评论(0) 推荐(0) 编辑