Search Results

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

Best way to randomize a string array in C#

See Jeff Atwood's own posts on shuffling and the one …
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 …