Reputation: 469
I have two separate C# projects,
Now I need to clean up the old methods of 1st project which is used as a dll reference.
How can I find the functions/ methods that I am actively using/ calling from the 2nd to 1st project.
Upvotes: 1
Views: 96
Reputation: 1813
I would comment out the Using reference to Project 1, then see which lines generate compile errors. That's where the references are used.
If you use Visual Studio, you can find them all if you install Resharper:
Expand the References and choose Find code Dependent on Module
Upvotes: 1