 Rank: Administration Groups: Administration
Joined: 11/23/2008 Posts: 335 Points: 711 Location: Australia
|
It's easy to suppress the warning. But before doing that, we need to ask ourselves "can we afford to lose the good documentation?". If the answer is no, we should add the comments. Otherwise we have the following 3 options to disable it:
1. Turn off the comment generation in project properties - whole project
2. Disable the warning 1591 in project properties - whole project
3. Use "#pragma warning disable 1591" to disable the warning just for some bits of your code (and "#pragma warning restore 1591" afterwards) - part of your code
|