Skip to content
Scan a barcode
Scan
Added to your cart
Paperback TCP/IP Sockets in C#: Practical Guide for Programmers Book

ISBN: 0124660517

ISBN13: 9780124660519

TCP/IP Sockets in C#: Practical Guide for Programmers

Select Format

Select Condition ThriftBooks Help Icon

Recommended

Format: Paperback

Condition: Very Good

$7.49
Save $26.46!
List Price $33.95
Almost Gone, Only 4 Left!

You Might Also Enjoy

TCP/IP Sockets in C, Second Edition: Practical Guide for Programmers
TCP/IP Sockets in C, Second Edition: Practical Guide for Programmers
Michael J. Donahoo, Kenneth L. Calvert

from: $6.59

TCP/IP Sockets in Java: Practical Guide for Programmers (The Practical Guides)
TCP/IP Sockets in Java: Practical Guide for Programmers (The Practical Guides)
Michael J. Donahoo, Kenneth L. Calvert

from: $4.89

Pocket Guide to TCP/IP Sockets (C Version) (The Morgan Kaufmann Practical Guides Series)
Pocket Guide to TCP/IP Sockets (C Version) (The Morgan Kaufmann Practical Guides Series)
Michael J. Donahoo, Kenneth L. Calvert

from: $5.09

Computer Networking: A Top-Down Approach
Computer Networking: A Top-Down Approach
James F. Kurose, Keith Ross, Keith W. Ross

from: $4.25

Mastering Regular Expressions
Mastering Regular Expressions
Jeffrey E.F. Friedl

from: $4.79

SQL: Practical Guide for Developers (The Morgan Kaufmann Series in Data Management Systems)
SQL: Practical Guide for Developers (The Morgan Kaufmann Series in Data Management Systems)
Michael J. Donahoo, Gregory D. Speegle, Gregory Speegle

from: $25.99

The Protocols (TCP/IP Illustrated, Volume 1)
The Protocols (TCP/IP Illustrated, Volume 1)
W. Richard Stevens, Kevin R. Fall

from: $10.89

UNIX Network Programming
UNIX Network Programming
W. Richard Stevens

from: $5.59

Numerical Recipes in C: The Art of Scientific Computing
Numerical Recipes in C: The Art of Scientific Computing
William T. Vetterling, Brian P. Flannery, William H. Press, Saul A. Teukolsky, B.P. Flannery, S.A. Teukolsky

from: $5.89

Java Network Programming
Java Network Programming
Elliotte Rusty Harold

from: $5.89

Practical C Programming, 3rd Edition
Practical C Programming, 3rd Edition
Steve Oualline

from: $5.29

The C++ Standard Library: A Tutorial and Reference
The C++ Standard Library: A Tutorial and Reference
Nicolai M. Josuttis, Josuttis Nicolai M.

from: $6.89

The C++ Programming Language
The C++ Programming Language
Bjarne Stroustrup

from: $5.19

Computer Networks
Computer Networks
Andrew S. Tanenbaum

from: $4.99

Signals and Systems
Signals and Systems
Alan V. Oppenheim, S. Hamid Nawab, Alan Willsky, S. Nawab

from: $14.59

Understanding the Linux Kernel
Understanding the Linux Kernel
Daniel P. Bovet, Marco Cesati

from: $6.29

Head First Object-Oriented Analysis and Design: A Brain Friendly Guide to OOA&D (Head First)
Head First Object-Oriented Analysis and Design: A Brain Friendly Guide to OOA&D (Head First)
David West, Gary Pollice, Brett McLaughlin, David West

from: $8.39

Computer Networks: A Systems Approach
Computer Networks: A Systems Approach
Larry L. Peterson, Bruce S Davie, Davie, Bruce S., Bruce S. Davie

from: $5.79

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

from: $4.59

C# Network Programming
C# Network Programming
Richard Blum

from: $5.19

Book Overview

"TCP/IP sockets in C# is an excellent book for anyone interested in writing network applications using Microsoft .Net frameworks. It is a unique combination of well written concise text and rich carefully selected set of working examples. For the beginner of network programming, it's a good starting book; on the other hand professionals could also take advantage of excellent handy sample code snippets and material on topics like message parsing and asynchronous programming."
Adarsh Khare, SDT, .Net Frameworks Team, Microsoft Corporation

The popularity of the C# language and the .NET framework is ever rising due to its ease of use, the extensive class libraries available in the .NET Framework, and the ubiquity of the Microsoft Windows operating system, to name a few advantages. TCP/IP Sockets in C# focuses on the Sockets API, the de facto standard for writing network applications in any programming language. Starting with simple client and server programs that use TCP/IP (the Internet protocol suite), students and practitioners quickly learn the basics and move on to firsthand experience with advanced topics including non-blocking sockets, multiplexing, threads, asynchronous programming, and multicasting. Key network programming concepts such as framing, performance and deadlocks are illustrated through hands-on examples. Using a detailed yet clear, concise approach, this book includes numerous code examples and focused discussions to provide a solid understanding of programming TCP/IP sockets in C#.

Features
*Tutorial-based instruction in key sockets programming techniques complemented by numerous code examples throughout
*Discussion moves quickly into the C# Sockets API definition and code examples, desirable for those who want to get up-to-speed quickly
*Important coverage of "under the hood" details that developers will find useful when creating and using a socket or a higher level TCP class that utilizes sockets
*Includes end-of-chapter exercises to facilitate learning, as well as sample code available for download at the book's companion web site

Customer Reviews

5 customer ratings | 5 reviews

Rated 5 stars
Short and Practical

I have modest experience with sockets programming. Generally I've been able to take advantage of frameworks provided for me. However, I've recently been called upon to do performance comparisons between .NET Remoting, Windows Communication Foundation (wCF), and raw .NET sockets. With this book I was able to get up and running very quickly. I had a real-world problem and I was able to solve it easily with this book. That...

0Report

Rated 5 stars
Good book

I've read through the first couple of chapters and I must say this is a good book. The thing I like most about this book is that the authors take time to not only give you working code but explain what the heck blocks within the programs do. If you are a novice programmer you may want to pick up a different book because it does assume you have a good understanding of basic C# programming.

0Report

Rated 5 stars
Brilliant!

This book delivers a good understanding of sockets. I have read one or two other books regarding the subject. The thing I like about this one is A) the whole book is dedicated to it. B) Its explanations are probably the best I have read regarding any topic in programming. Remember first starting C++, and the first chapters of the book taught you how to add integers? You kind of sit there saying "Yeah, Yeah, get on with...

0Report

Rated 5 stars
The Perfect Book With Perfect Examples

I loved this book! I bought this book not knowing anything about sockets. All I knew was that I had to use them for my next project. I bought this book, and within 2 weeks time had developed a full-scale proof-of-concept, distributed, client-server type application communicating over TCP/IP and using UDP for multicasting. The examples are concise and practical, including examples of data framing/parsing and how to deal...

0Report

Rated 5 stars
Exactly what I was looking for

TCP/IP Sockets in C# delivers an incredible amount of knowledge considering it is only 175 pages! The authors spend the first chapter looking at TCP and UDP protocols, their differences and benefits. By chapter two you are already experimenting with sockets. The authors go over the TcpClient/TcpListener classes, as well as the more low-level raw socket class. The book is extremely easy to read, and is moist with interesting...

0Report

Copyright © 2025 Thriftbooks.com Terms of Use | Privacy Policy | Do Not Sell/Share My Personal Information | Cookie Policy | Cookie Preferences | Accessibility Statement
ThriftBooks ® and the ThriftBooks ® logo are registered trademarks of Thrift Books Global, LLC
GoDaddy Verified and Secured