Search Results

2
votes

What is “Best Practice” For Comparing Two Instances of a Reference Type?

For complex objects that will yield specific comparisons then implementing IComparable and defining the comparison in the Compare methods is a good implementation. For example we have "Vehi …
47
votes

What are Code Smells? What is the best way to correct them?

Primitive Obsession Always using "int" and "double" where you should have a class such as "Money" or "OrderValue" so that you can apply different logic or rounding. It also …
3
votes

What are Code Smells? What is the best way to correct them?

Pattern Duplication Not just copy/paste of lines but similarity in the methodology, for example, always setting up a transaction, calling arbitary methods on objects, retur …
5
votes

What is your “favorite” anti pattern?

Magic Pushbutton is everywhere in web apps, especially since javascript has taken off yet programming ability has remained …