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
  • 573
  • 1
  • 7
  • 18

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,193
  • 1
  • 8
  • 16
0

enter image description here

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

What do you think?

L.

Ciupaz
  • 573
  • 1
  • 7
  • 18