Search code examples
visual-studio-2010c#-4.0resharperresharper-7.1

How to find uncommented public methods using Resharper


I am using Resharper 7.1 with Visual Studio 2010. Is there a way to find all uncommented (without method summary and parameter descriptions) public methods through the entire solution?


Solution

  • You don't need Resharper for this.

    Simply check "Generate XML documentation file" in the build tab in project properties, and the compiler will warn you about every missing comment.