카테고리 없음
SyntaxHighlighter 테스트
Clack
2010. 12. 14. 16:32
티스토리에 각종 스크립트 문장을 보기 좋게 넣는방법이 있어 테스트를 해본다.
try { server = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IPHostEntry host = Dns.Resolve(Dns.GetHostName()); string strIP = host.AddressList[0].ToString(); // Get the local IP address IPAddress hostIP = IPAddress.Parse(strIP); IPEndPoint ep = new IPEndPoint(hostIP, port); server.Bind(ep); server.Blocking = true; // The server socket is working in blocking mode server.Listen(1); } catch (SocketException exc) { MessageBox.Show(exc.ToString()); }