Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IRC library in C# [closed]

Tags:

c#

client

irc

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#?

like image 650
ty. Avatar asked Dec 25 '09 22:12

ty.


2 Answers

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.

like image 69
Cory Petosky Avatar answered Oct 15 '22 10:10

Cory Petosky


There is a bunch of IRC libraries on Codeplex, one of them which seems quite good is Nebo IRC: http://nebo.codeplex.com/

Some other IRC libraries on Codeplex: http://www.codeplex.com/site/search?projectSearchText=IRC

like image 25
Ucodia Avatar answered Oct 15 '22 08:10

Ucodia