摘要: public static class ByteHexHelper{ private static char[] _buffedChars = null; private static byte[] _buffedBytes = null; static ByteHexHelper() { _buffedChars = new char[(byte.MaxValue - byte.MinValue + 1) * 2]; int idx = 0; byte b = byte.MinValue; while (true... 阅读全文
posted @ 2011-08-29 00:46 ahui 阅读(7049) 评论(0) 推荐(0) 编辑