일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- flash builder
- 경로
- 3d
- iphone
- swf
- 영어
- smartfoxserver
- unity3D
- AIR
- class
- Android
- 배열
- 아이튠즈
- Mac
- texture
- 게임
- 단축키
- Build
- sdk
- AS3
- unity
- Ane
- path
- 태그를 입력해 주세요.
- XML
- Flash
- file
- builder
- Game
- ios
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()); }