Search code examples
c#clientirc

IRC library in C#


I want to embed a small chat window in my program that will function as a basic IRC client. This requires limited functionality such as connecting, disconnecting, listing users, and sending private messages.

As of writing, I have tried several bloated libraries that make it too difficult to create a simple application (wiring many events, handling things like channels, modes, etc. that I'm not interested in). Other libraries I've tried are developed for old versions of .NET and are full of deprecation warnings. How can I develop a lightweight IRC client in C#?


Solution

  • Two years later, now there's ircdotnet which seems to work pretty well.

    Should note that this does not yet (and will likely never) work for Windows 8 Metro-style (WinRT) apps.