How can I learn TCP / IP and socket programming with .NET 2.0?

Where can I find good resources and examples for learning how to use TCP / IP in .NET / C # 2.0? Any suggestions on where to start? I am new to socket programming.

+2


a source to share


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


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







All Articles