2013年5月3日
摘要: 服务器端接收从客户端传递来的数据:View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.Net.Sockets;using System.Threading;namespace RecvFileServer{ public class StateObject { // Client socket. public Socket workSocket = null; ... 阅读全文
posted @ 2013-05-03 16:21 RedLight 阅读(524) 评论(0) 推荐(1) 编辑