I am using DLLImport to invoke the native code. I have the two different versions of same dll (same dll name) in different folders which is used by two applications. Since dll name is same, both applications is using same dll whichever is loaded first (native dll). How can I specify in the DLLImport to pick the specific version of the native DLL. In MSDN, DLLImport constructor shows I can specify the version if the native DLL is embedded in the assembly. I have difficulty in embeddeding the native dll which is built for Windows Mobile devices.
Does anybody knows how to embed the processor specific native dll into an assembly and use DLLImport to specify the version of the native?