Using System.Reflection, I can get all methods from a specific class
I need know what are the references to these methods. For example: in Visual Studio, if you want the references of specific object
- right click on the object and select "Find All References"
- Visual Studio show the references of this selected object
I want make the same, but from code with reflection or another way.
Can I do this?