Reputation: 266920
Are there any reporting tools for Visual Studio 2008 that can build a list of all classes and methods used in a project?
Upvotes: 0
Views: 2745
Reputation: 2434
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.
Upvotes: 0