I have an existing WM application that I need to capture photos with and it looks like the Imaging class in OpenNETCF v2.x is the best bet because I am running into the "Out of memory" exception when simply trying to open the files. The application is built on a vendor's mobility platform and it appears that their assemblies leverage OpenNETCF v1.4 (which I don't have access to to recompile them with the newer version of OpenNETCF). When I simply add a reference to the new version of OpenNETCF, the mobile solution fails to run. Is there a way to reference multiple versions of the OpenNETCF library or am I stuck in the water? Or is there a way to create a class library for the imaging part of it that does not require a reference to the new OpenNETCF libraries in the base application?
You've got a couple options.
Assembly.LoadFrom
early on and making it load the local 2.3 versions.