摘要: 客户端 static void Main(string[] args) { Console.WriteLine("this is a Client!"); Socket client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); client.Connect(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 8000)); ... 阅读全文
posted @ 2013-12-03 09:23 尼姑哪里跑 阅读(453) 评论(0) 推荐(0)