334 Views
A nice write-up on generic coding standards that can be applied to any language by any programmer. There are years of experience (42, according to the author) poured into this piece, and it shows.
Join in on a hand-picked round up of the best .NET articles every day.
Curated by our Moderators and Voted up by our Community. Free.
A nice write-up on generic coding standards that can be applied to any language by any programmer. There are years of experience (42, according to the author) poured into this piece, and it shows.
Adding my opinion to what is already said: Do code refactoring all the time. Code refactoring is redesigning the code after lot of requirements have been added. This ensures that the code is still maintainable after all those changes.
I find that making refactoring part of your weekly workflow improves code quality greatly. Often, when I'm designing a system, I will revisit a piece of code a day or two later and evaluate whether it can be improved or not. A fresh perspective can highlight bugs and deficiencies.