Reputation: 699
is there a way (or a free plug-in) to check the never used code (in VB.NET in my case) in a ASP.NET web application (a web project, 2 class library and a web service)?
Thank you in advance.
Luis
Upvotes: 0
Views: 163
Reputation: 699
I've got these results, but there is no voice "Unused Symbols".
What do you think?
Upvotes: 0
Reputation: 1304
ReSharper tool is having this capability to filter never used code. Refer Resharper article. follow below steps after plugged this tool:
Results should have an option "Unused Symbols".
it refers all classes and methods that are never used.
Upvotes: 1