Looking for library for Instant Messaging, like libpurple, but written in C#

前端 未结 5 1439
梦谈多话
梦谈多话 2020-12-15 12:27

I\'m looking for an Instant Messaging library that at minimum supports YM, MSN protocol - preferably free but if it\'s worth to pay, why not.

5条回答
  •  生来不讨喜
    2020-12-15 13:12

    I've never heard of a multi-protocol IM library for .NET... there are separate implementations for almost all protocols, however. If you really need that, I suggest you create your own library ;).

    I can see 2 main options for doing that :

    • Create a .NET wrapper for libpurple
    • Use the existing separate protocol implementations, extract an abstraction level that fits all of them, and put them all together.

    I think the first approach is the best, because the abstraction level probably already exists in libpurple. Whichever you choose, it's going to be a lot of work anyway...

提交回复
热议问题