2
votes
Static libraries with managed code issue
My hunch was that, as you suspected, unmanaged DLLs are loaded in the context of the process and not in the context of the AppDomain, so any static data in unmanaged code is shared among AppDomains …
8
votes
1
vote
How to prevent creating intermediate objects in cascading operators?
Bjarne Stroustrup has a short paper called Abstraction, libraries, and efficiency in C++ where he mentions techniques us …
