Quote (carteblanche @ Mar 20 2013 01:08pm)
I'm not personally familiar with the error, but from the sound of it you're trying to add a native "unmanaged" dll (from C, C++, etc) into your c# project. it's complaining because C#.NET isn't native; it's managed. why are you doing this? If you're trying to get info from urls, use the .NET classes to do it. eg: HttpWebRequest
there is some way to add native code like that, but i've never done it. google around for marshalling examples
/edit: but if you insist on it, looks like there's a C# version you can use:
http://stackoverflow.com/questions/2540580/libcurl-in-c-sharp-and-netThat's the weird thing, is that I didn't try building C# with the libcurl c++ library.. That would just be retarded lol.
I have no idea what I need to change in my settings and properties to fix this..