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