Reputation: 145
Is there a possibility to use static (.lib) libraries with C# silverlight project? I have searched all over the internet and found no proper solution for using static libraries.
Upvotes: 1
Views: 350
Reputation: 6678
Static libraries are C++ libraries. You can't use them directly from C# but there are ways to do interop:
Upvotes: 2