Is there are any documents / articles on ASP.NET 4.0 Coding standards? It would be of great help to me, to increase the quality in my code and thus adhere to industry standards.
Thanks
Is there are any documents / articles on ASP.NET 4.0 Coding standards? It would be of great help to me, to increase the quality in my code and thus adhere to industry standards.
Thanks
I found this documentation to be extremely useful and well made, with a cheatsheet too.
Most companies are moving/have moved to using the Microsoft coding standards. As well as getting a well-thought out and very comprehensive set of standards, you get excellent tool support using FxCop and StyleCop.
While you can implement your own standards for these, it's rarely worth the effort to do anything more than supplement the default set of rules.
You got Design Guidelines for Developing Class Libraries at MSDN.
Don't be fooled by the name. I find then to be a really good set of guide lines that you should follow.
You could also installed StyleCop. Some of the guide lines are stupid (as forcing a worthless header or not letting you have _underScorePrefix
for field names). The good thing is that you can turn of or customize rules.