I have an x86 managed c++ dll. I can access it without problems from c++ or
c# on 32 bit platforms. On vista64, I can use it from a 32 c++ application.
But, on vista64, if I try to load it from a c# application (targeting either
the x86 or the x64 platform) I get "Could not load file or assemb...
more >>
I'm trying to run multiple independent processes in separate AppDomains.
Ideally, these processes should be restartable after failure (which
hopefully occurs very rarely). I had assumed that, since AppDomains are
supposed to provide isolation, an unhandled exception in an AppDomain would
cau...
more >>
I want to be able to read then dynamically load a main and dependent
assemblies from encrypted sources.
I can get the load the first one into memory by using assembly.load from
bytes. Is there a way to do this for the referenced assemblies as well? Not
system assemblies but the others that ...
more >>