We have several library projects which are referenced as using statements like this:
Using XYZ.Controllers;
namespace test
{
Public partial class testing: System.Web.UI.Page
//...
Private void aTest()
{
string Fred=AController.GetAName();
}
//...
}
The controller AController would be created in another project (XYZ) which is referenced from this project as above. What I would like to able to do is to identify which routines in the XYZ project are no longer in use. (because code changed, new requirements etc).
Does anyone know of a way of finding out which functions are called and or which are not?
Simon