Using Visual Studio (2010) is there any way to combine Find All References
with a Replace All
capability.
I have inherited VB.NET code written by a VB6 programmer and I want to remove all the references to IIF
and many other VB6 functions as they are causing several problems.
Does either CodeRush or Resharper support this feature? I couldn't seem to find any documentation on either about it if they do.
Some of the functions I can remove by normal find and replace
but others are more difficult to build the regex for.
I have tried to remove the reference to the Microsoft.VisualBasic.dll but the number of errors is very considerable (the code was just copy-pasted for every new class that was created)