摘要: using System;using System.IO;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;namespace ConsoleApplication22{ class Program { static void Main(string[] args) { string[] prefixed = new string[] { "http://localhost:45678/" }; ... 阅读全文
posted @ 2013-05-24 14:11 JeanGe 阅读(268) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Net;using System.Net.Sockets;using System.Text;namespace ConsoleApplication22{ class Program { static void Main(string[] args) { IPAddress address = IPAddress.Loopback; IPEndPoint endPoint = new IPEndPoint(address, 45678); ... 阅读全文
posted @ 2013-05-24 10:30 JeanGe 阅读(229) 评论(0) 推荐(0) 编辑