Are there any reporting tools for Visual Studio 2008 that can build a list of all classes and methods used in a project?
views:
119answers:
2
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
2009-06-30 14:39:39