Search code examples
.netchatmulti-user

Where to start to build .NET Multiuser Chat Application?


Which .NET namespaces should I be looking at if I'd like to start writing a very simple chat application (in C#)?

Please let me know if there's a way that I can clarify or expand on this to make it a more precise question.

Thanks,

Adam


Solution

  • Your going to need to look at System.Net, System.Net.Sockets, and System.Threading. To get a basic idea of how to send messages through TCP connections please refer to the following url: Simple Threaded TCP Server