How can I learn TCP / IP and socket programming with .NET 2.0?
2 answers
the new MSDN site is really nice and cleanly separates the various language examples. Anyway, you will most likely start with TcpClient and TcpListener . I played around with the .NET socket library for the first time last week and was able to implement a TCP command interpreter very quickly.
+4
a source to share
Common .NET Programming in C # - Tom Barnaby
The book may not be what you wanted to hear about, but this is by far the best link I've come across. It covers everything from .NET Remoting, Threading and below. Networking.
+1
a source to share