Search Results

4
votes

How to do C++ style destructors in C#?

Where I work we use the following guidelines: Each IDisposable class must have a finalizer Whenever using an IDisposable object, it must be used inside a "us …
4
votes

Loader lock error

The general idea of loader lock: The system runs the code in DllMain inside a lock (as in - synchronization lock). Therefore, running non-trivial code inside DllMain is "asking for a deadlock", as …
7
votes

Re-implementing an interface that another interface already inherits

I believe this is just a matter of style. It is specifically important when looking at framework/library classes - in your example, for instance, it highlights the idea that this class can be treat …