Quote Originally Posted by Kallog View Post
Why do you want it in .net rather than just calling a C library from .net? Sounds horribly slow.
Well the application I am working on is a web app and we're using .NET so it's easiest just to use a .NET library. It can be a pain to wrap dll's but I still may end up doing so. My primary concern about this approach is that the app we are developing might possibly be serving multiple simultaneous clients but when you wrap a DLL in .NET the methods must be marked static (this still may be possible but it makes me uncomfortable). As far as speed is concerned, you are most certainly correct about it being slower but I'm not sure exactly how much slower (we'll know if it 'feels' too slow). If we find that it's too slow we'll have to take another approach.