Posts

Showing posts with the label Standards

General C# Coding Standards

Image
Purpose The objective of this Wiki is to describe rules, recommendations, and practices for developing applications using MS technologies. These guidelines enforce consistency of style and formatting and help avoiding common mistakes and maintainability issues. Importance of Coding Standards “Any fool can write code that a computer can understand. Good programmers write code that humans can understand.” -Martin Fowler In the project development process, work is result of team effort, several task are distributed among team members. Often you may face situations where you transfer your work to some other person or you may need to involve in projects/tasks that were initially developed by some other person; in some other situation even you could return to a project you written long time ago and you forget anything about it. Majority of the people write ‘working code’, but not ‘good code’. Writing ‘good code’ is an art and you must learn and practice it. Imagine if ever...