Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  5 comment styles should be avoided

Have you ever found some superfluous comments while checking others codes? The purpose of using comments in the code is to enhance the readability of the code, so that non-original code developers can understand them better and easier.I summarized 5 kinds of comment styles and the developers who write them. Hope you don't do the same thing as below in your application development process.1. Arrogant commentspublic class Program{ static void Main(string[] args) { string message = "Hello World!"; // 07/24/2010 Bob Console.WriteLine(message); // 07/24/2010 Bob message ...

8,096 3       CODE COMMENT COMMENT STYLE