What are the virtues of using XML comments in .NET?
- by Michal Czardybon
I can't understand the virtues of using XML comments. I know they can be converted into nice documentation external to the code, but the same can be achieved with the much more concise DOxygen syntax. In my opinion the XML comments are wrong, because:
They obfuscate the comments and the code in general. (They are more difficult to read by humans).
Less code can be viewed on a single screen, because "summary" and "/summary" take additional lines.
They suggest that all method parameters have to be commented, whereas 90% of them are obvious and SHOULD be left not commented.
The only problem I have with this is that my point of view seems to be in minority. Why?