views:

119

answers:

2

Are there any reporting tools for Visual Studio 2008 that can build a list of all classes and methods used in a project?

+4  A: 

NDepend can create such reports. It has its own query language, so that even you can select types/members depending on some metadata.

tanascius
A: 

You can use reflection if you need all the names, something like (in VB.NET)

 Dim myType As Type = GetType(myclassname)
 Dim myArrayMethodInfo As MethodInfo() = myType.GetMethods(BindingFlags.Public Or BindingFlags.Instance Or BindingFlags.DeclaredOnly)
    For i As Integer = 0 To myArrayMethodInfo.Length - 1
        Dim mi As MethodInfo = CType(myArrayMethodInfo(i), MethodInfo)            
        Debug.Print(mi.Name)                       
    Next i

Or you can use a 3rd party tool such as OxyProject Metrics if you just want to count them.

Martin