Tag: DOT NET
C# TCP Client Server Example Code
by The Uni-Hacker on Jul.29, 2008, under Programming
Below is example code written in C# for a TCP/IP client and server. The TCP server uses what is called a Listener object, which listens for incoming connections. On the client side, the code is instructioned to connect to a specific IP address at which point the server side makes a connection and both client and server can talk to each other.
(continue reading…)