Search Results

0
votes

Tracking Refactorings in a Bug Database

Other If you work at a place with that kind of inflexible (and ridiculous) policy, the best solution is to find another job! …
9
votes

.NET - What’s the best way to implement a “catch all exceptions handler”

For Winform applications, in addition to AppDomain.CurrentDomain.UnhandledException I also use …
1
vote

Why is lock(this) {…} bad?

There's also some good discussion about this here: Is this the proper use of a mutex? …
7
votes

What is the impact of Thread.Sleep(1) in C#?

As stated, your loop will not hog the CPU. But beware: Windows is not a real-time OS, so you will not get 1000 wakes per second from Thread.Sleep …