0

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

Ciupaz
  • 639
  • 1
  • 10
  • 19

2 Answers2

1

ReSharper tool is having this capability to filter never used code. Refer Resharper article. follow below steps after plugged this tool:

  1. Right click on your solution
  2. Select "Find Code Issues".

Results should have an option "Unused Symbols".

it refers all classes and methods that are never used.

Always_a_learner
  • 1,254
  • 1
  • 8
  • 16
0

enter image description here

I've got these results, but there is no voice "Unused Symbols".

What do you think?

SecretAgentMan
  • 2,856
  • 7
  • 21
  • 41
Ciupaz
  • 639
  • 1
  • 10
  • 19