Is there any tool or extension to generate a report which contains data about classes and methods? For example, show a summary of all classes and the methods included in each class with the count of both.

link|improve this question
1  
ILDasm? Class diagram? – VMAtm Jul 19 '11 at 10:08
feedback

2 Answers

NDepend lets you perform all kinds of queries about your code. I can't say I've used it myself, but I would be surprised if it didn't let you generate reports.

link|improve this answer
feedback
up vote 1 down vote accepted

I found it in Visual studio. go to the following menu option

Analyze > Calculate Code Metrics for Solution

It will show Code Metrics Result window. From this window choose export to excel and you'll get a report with all the projects, Namespaces, Classes, Methods and some other details about them in Excel file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.