This repository contains code examples and assignments for the book 'Computer Networking A Top-Down Approach.' The focus of this repository is on socket programming, providing hands-on experience and practical implementation of networking concepts in C#.
UDP
- The client reads a line of characters (data) from its keyboard and sends the data to the server.
- The server receives the data and converts the characters to uppercase.
- The server sends the modified data to the client.
- The client receives the modified data and displays the line on its screen.