-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Refactoring with C#
By :

In this chapter, we’re going to explore the idea of code standards.
Code standards are an agreed-upon set of standards your team decides should be applied to any new code created by the team.
These standards have an important role in resolving disputes, focusing attention on the areas that truly matter, reducing the amount of technical debt teams naturally accumulate, and helping pay down existing technical debt.
One of the most frustrating experiences I’ve ever had as a developer is when I’ve sent a carefully thought-out change to another developer for review and I’ve heard back remarks such as the following:
var
instead of the TypeIn these scenarios, the developer in question ignores the substance of...