I'm having a lot methods in a couple of WCF services and I want to remove the unused ones. Searching through code one method at a time requires to much time so... What's the best way to do that? I'm thinking like some kind of interceptor to tell me the names of the methods being called while testing the application, I don't know if this is possible.
Asked
Active
Viewed 182 times
1 Answers
0
You can use a code coverage tool for this. There are several for .NET, one of which I'm currently evaluating, but I'm not prepared to give a recommendation just yet :)

500 - Internal Server Error
- 28,327
- 8
- 59
- 66
-
That's a good idea, but the methods are called from different applications outside the services solution. I don't think a code coverage tool will work, but thanks anyway. – raulucian Feb 08 '12 at 21:06
-
"...methods are called from different applications outside the services solution" That should not be a problem. – 500 - Internal Server Error Feb 08 '12 at 21:15