I have a C # project for which I need to find all private methods that are not called from any other public method directly or indirectly.
In addition, for each private method that is called from an open method, I need to know what public method it is. Then I will evaluate whether this method is really called from the client of the class, and if not, I can delete it.
In the past, I used code from Lutz Rorder, which is the Reflector base - it was able to parse IL code and give an object model on top of it. I can not find this code now.
Any suggestion? Maybe the point in this Lutz Rorder code?
Saar
source
share