0
votes
Order of items in classes: Fields, Properties, Constructors, Methods
There certainly is nothing in the language that enforces it in any way. I tend to group things by visibility (public, then protected, then private) and use #regions to group related things function …
2
votes
Best practices considered harmful?
I agree that the use of "best" in this context is often a misnomer. "Best" is usually "common" and too seldom has any basis in empirical or objectively verifiable evidence to support it. As others …
8
votes
How do you tell someone they’re writing bad code?
The code standard idea is a good one.
But consider not saying anything, especially since it is for fun, with, presumably, people you are friends with. It's just code...
…
0
votes
NUnit with night build, how to get errors easily?
We have a nightly test driver based on FIT with a special fixture for running NUnit on DLLs. The testing fixture captures the output and looks for the final summary line that says how many tests pa …
0
votes
How would you use design patterns to educate and share design experiences?
I think focusing on OO is probably not the most constructive path. I'd start with just good procedural design -- using patterns to express them is a fine method -- and also focus on nuts and bolts …
1
vote
When should you map a column to Enum type in code
This is actually a complicated question: when you are using an enum, it is traditional to also have a lookup table in the DB as Reed suggests. But this raises the problem of synchronizing the defin …
1
vote
In C# how can I safely exit a lock with a try catch block inside?
The lock will be released when the context of it's block is exited, however that happens. In the code example given above the lock will automatically, safely be released as control exits the final …
