2

I know you can right click on an individual method and find all references for a single method but is there a way to find all references where there is only the method definition returned (i.e. no external references to the method).

JaredPar
  • 733,204
  • 149
  • 1,241
  • 1,454
jetstreamin
  • 407
  • 5
  • 19
  • 1
    Duplicate of: http://stackoverflow.com/questions/245963/find-unused-code and http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net and http://stackoverflow.com/questions/65585/is-there-a-tool-for-finding-unreferenced-functions-dead-obsolete-code-in-a-c – Russell McClure Oct 21 '10 at 16:43
  • possible duplicate of [Visual Studio: Find unused code?](http://stackoverflow.com/questions/1413548/visual-studio-find-unused-code) – nawfal Oct 12 '13 at 17:50

1 Answers1

1

In the standard Visual Studio install there is no built-in command that will do this. However there are other tools out there that have this functionality. Most notably is NDepend

JaredPar
  • 733,204
  • 149
  • 1,241
  • 1,454