Is there any way to know the most used methods from external libraries within a C# project / solution? Right now, i'm using Visual Studio 2008 (but ansers for newer versions are ok).
Just need a simple listing like:
Namespace Class Method Times used
---------------------------------------------
Namespace1 Class1 MethodA 10
Namespace1 Class2 MethodA 9
Namespace2 Class2 MethodB 7
Maybe there is no easy way, ideas for doing it programmatically are welcomed.
Thanks!