2005年10月23日
摘要: /// /// 数据流转换为十六进制字符串 /// /// /// private static string ByteArrayToHexString(byte[] bytes) { if ( bytes == null || bytes.Length == 0 ) throw new ArgumentException( "bytes [] 参数出错" )... 阅读全文
posted @ 2005-10-23 19:26 DAVID'S BLOG 阅读(1834) 评论(0) 推荐(0) 编辑