Plz, can anyone show me where to get materials on learning and using winsock
Printable View
Plz, can anyone show me where to get materials on learning and using winsock
If you want to use the .NET socket classes. MSDN has some great resources. They have sample code, explanations etc. Anyhow, this is how I got my start with .NET sockets, and it was a good enough start building a commercial application, which we've now sold several times over.
For simplicity, I'd recommend starting with snchronous sockets:
Using a Synchronous Client Socket
Synchronous Client Socket Example
From there, follow the links to the server counterparts, and also the asynchronous conterparts if you decide to go that far.
Thanx man 4 thisQuote:
Originally posted by Mike Hildner
If you want to use the .NET socket classes. MSDN has some great resources. They have sample code, explanations etc. Anyhow, this is how I got my start with .NET sockets, and it was a good enough start building a commercial application, which we've now sold several times over.
For simplicity, I'd recommend starting with snchronous sockets:
Using a Synchronous Client Socket
Synchronous Client Socket Example
From there, follow the links to the server counterparts, and also the asynchronous conterparts if you decide to go that far.
but i only know VB6!