View which methods / functions return a specific object in Visual Studio

I am making a C # application in Visual Studio, and I am wondering if there is a way to view each method returning a specific type?

For example, I want to know which methods return an Asymmetric Algorithm object.

+3
source share
2 answers

Reflector shows this (and is free); just select View => Search (or F3) to find the type, then Tools => Analyze (or Ctrl+ r) and expand Exposed By in the Analyzer panel.

+5
source

JetBrains resharper. , ( " " ) looooads . (, ).

+2

Source: https://habr.com/ru/post/1671185/


All Articles