tags:

views:

196

answers:

6

Please tell me good tutorial for learning .net network programming

+5  A: 

There is a similar question that already exists with relevant answer for you: C# Networking API’s.

Please take a look there. Note the options proposed in answers:

Have a look at this sample for an idea of how to get TcpClient working: Tcp Client Sample.

And here's a tutorial: C# Tutorial - Simple Threaded TCP Server

Codesleuth
A: 

This is one of my favorite. To the point and easy to grasp. http://www.webtropy.com/.

Shoaib Shaikh
A: 

This tutorial was very useful to me.

Carra
A: 

Personally, I like this book: Professional .NET Network Programming

Anry
+1  A: 

C# Networking working code examples
and
C# Network Programming
by Richard Blum
.

TheMachineCharmer