Using visual-studio: Visual Studio refactoring: Remove method on newest questions tagged visual-studio – Stack Overflow
Is there any Visual Studio Add-In that can do the remove method refactoring?
Suppose you have the following method:
Result DoSomething(parameters)
{
return ComputeResult(parameters);
}
Or the variant where Result is void.
The purpose of the refactoring is to replace all the calls to DoSomething with calls to ComputeResult or the expression that uses the parameters if ComputeResult is not a method call.
See Answers
source: http://stackoverflow.com/questions/8549/visual-studio-refactoring-remove-method
Using visual-studio: using-visual-studio
Recent Comments