C# Coding Standards and Guidelines: Comments
1. All source code must include the following comments at the very top:
/********************************************************
*Author:
*Date:
*Description:
*Revision:
********************************************************/
2. All comments should be written in English(like in U.S. English).
3. Comments lines should begin with // indented at the same level as the code they are documenting.
4. Do not use /* … */ blocks for comments.




