BadImageFormatExceptions are almost always a 32 bit/64 bit incompatibility; If I were a betting man, I'd say you are binding the wrong version based on your Platform configuration in Visual Studio.
Choosing "Any CPU" will result in an assembly that will be JITted into a 64 bit version when loaded into a 64 bit process and a 32 bit version when loaded into a 32 bit process
Choosing "x86" will always result in a 32 bit assembly
I'd be willing to bet you've got:
- "Any CPU" selected
- A 64 bit computer
- A 32-bit only version of the C++ library
Try switching everything over to 32 bit first; x86 for Platform, use the 32 bit version of the library, etc.