views:

47

answers:

2

I'm making a C# application in Visual Studio and am wondering if there is any way to view every method that returns a specific type?

For example, I want to know which methods return an "AsymmetricAlgorithm" object.

+2  A: 

Buy JetBrains resharper. It has features that do that (its called "find usages") and looooads of others. (no I dont work there).

jdv
If your project is open source it is free to use.
Scott Chamberlain
+5  A: 

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

Marc Gravell
Excellent, thank you.
Petey B