I have a get method in my code which is currently taking a parameter. I want to remove this parameter from this method. For this I have to update all those pieces of code where this method is used. I tried find and replace in VS2008 with the wildcard option as get(?*) to get(). But unfortunately this is matching for if(get() > 1) type of strings as well. What other string I can use to do this. I hope my requirement is clear. Basically I want to replace all get(blah) with get(). How can I do this?
|
|
|
|
|
|
|
Use the Refactor functionality of Visual Studio. |
||
|
|
|
|
To expand upon @Gerrie Schenck's answer, go to the If you've already updated your method and can no longer use this functionality, you might try using |
||
|
|
|
Searching for
|
||
|
|
