tags:

views:

43

answers:

3

Hello,

I'm looking for a book that covers TCP protocol from TCP/IP family and contains examples in C#.

I've found this one:

Thanks for tips!

A: 

I don't know of any good book for C#, but assuming that you're planning to write an app that will use an existing protocol (like POP3, SMTP, NNTP, etc) I'd suggest that you should also read the relevant RFCs. Many of them are surprisingly readable and contains much useful information that might be skipped in generic books.

You can find the RFCs here.

ho1
+1  A: 

All programming languages provide more or less the same networking interfaces based on the BSD sockets. I suggest you learn the basics of computer networks and TCP/IP with this classic book:

Internetworking with TCP/IP Vol.1: Principles, Protocols, and Architecture (Douglas E. Corner)

And then read the specifics of C# sockets in MSDN (remaining 5%).

cyberguijarro
MartyIX
+1  A: 

Search for Sybex publication's book in C# Network programming. Also Java2s.com will be a great help for you.

Amit Ranjan
I found the book but it also seems a little bit old. It seems no new books for newer versions of .NET than .NET 1.0 exist :-)
MartyIX