2016年12月9日
摘要: static byte[] GetBytes(string str) { byte[] bytes = new byte[str.Length * sizeof(char)]; System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length); return bytes; } static str... 阅读全文
posted @ 2016-12-09 16:11 王庆东mas 阅读(1351) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/dreamer-fish/p/3911953.html C#实现: C#写的一个反向代理,可以缓存 https://www.oschina.net/code/snippet_172400_17195 阅读全文
posted @ 2016-12-09 10:01 王庆东mas 阅读(359) 评论(0) 推荐(0) 编辑