Find all static method calls in a class
Hello,
I have a class that calls static methods in other classes. I want to delete or replace all these calls to static methods. How do I write resharper code to return a list of all static method invocations in a class?
Thanks.
Please sign in to leave a comment.
occurrences is a collection of IOccurence which has a TypeElement property which you can check to see if it's in your class.