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