摘要:
Stream 和 byte[] 之间的转换/* - - - - - - - - - - - - - - - - - - - - - - - - * Stream 和 byte[] 之间的转换 * - - - - - - - - - - - - - - - - - - - - - - - */ /// <summary> /// 将 Stream 转成 byte[] /// </summary> public byte[] StreamToBytes(Stream stream) { byte[] bytes = new byte[stream.Length]; stre 阅读全文
posted @ 2012-08-07 21:37
星火卓越
阅读(449)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2012-08-07 12:12
星火卓越
阅读(0)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2012-08-07 11:20
星火卓越
阅读(1)
评论(0)
推荐(0)
摘要:
方法一using System; using System.Net; using System.Net.Mail; using System.Net.Mime; using System.Threading; using System.Net.Sockets; using System.IO; using System.Collections; using System.Collections.Generic; using System.Net.Configuration; using System.Configuration; #region 邮件接收类 /// <summary> 阅读全文
posted @ 2012-08-07 09:29
星火卓越
阅读(812)
评论(0)
推荐(1)