일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 영어
- 아이튠즈
- path
- 태그를 입력해 주세요.
- 3d
- texture
- class
- file
- Ane
- Build
- smartfoxserver
- XML
- Flash
- flash builder
- AS3
- Android
- iphone
- Game
- 경로
- ios
- 배열
- sdk
- unity3D
- 게임
- builder
- AIR
- unity
- swf
- Mac
- 단축키
Archives
- Today
- Total
상상 너머 그 무언가...
SyntaxHighlighter 테스트 본문
티스토리에 각종 스크립트 문장을 보기 좋게 넣는방법이 있어 테스트를 해본다.
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()); }