Tuesday, March 29, 2011

C# Code Quality Tools

Code quality is very important in delivering the reliable solutions.
But most of the developers simply write the code to implement a solution for the requirement.

I strongly recommend to analyse the code before delivering. I suggest the below code analysis tools wchich works with Visual Studio integration.

StyleCop
FxCop

These tools really helps in analysing the code and suggesting the improvements on design, localization, performance, security, naming convensions and Readability.

And also gives the report on Unused parameters in functions, Unused functions, Wrong scope (of functions, variables, enums, etc.,).

Find the list of tools for static code analysis here.

No comments:

Post a Comment