Using libpurple from .NET.

Can anyone please guide me to a sample code of how to use libpurple from .NET?

+2


source to share


2 answers


libpurple is an unmanaged library - you either need to get a wrapper for it or write your own. A quick Google search did not come up with any good .Net wrappers, so writing your own might be your only option.



Here's a simple tutorial on how to write a wrapper: Call unmanaged code. Part 1 - Simple DLLImport

+3


source


There is a LibPurple-Sharp project https://code.google.com/p/libpurple-sharp/



+1


source







All Articles