| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
too bad, just curious about this code that i found here , looks like objective C or C right ? <---> namespace PhoneActSrv { public class Server { private readonly int port; private readonly IPAddress address; private TcpListener listener; public Server( IPAddress address, int port ) { this.port = port; this.address = address; } public void Start() { listener = new TcpListener( address, port ); listener.Start(); Thread thread = new Thread( new ThreadStart( StartListen ) ); thread.Start(); <---> |
_______________________________________________ Do not post admin requests to the list. They will be ignored. Bonjour-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/bonjour-dev/email@hidden This email sent to email@hidden
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.