Tool to go through all .cs files and change specific calls

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi! Is there a tool out there to go through entire code base and change all
calls to a specific component to another component ? The code base is
somewhat large and it would take me 2 weeks to do it manually.

Infinite thanks in advance,

--M
 
Hi! Is there a tool out there to go through entire code base and change all
calls to a specific component to another component ? The code base is
somewhat large and it would take me 2 weeks to do it manually.

IDE refactor capabilities are not sufficient?

Arne
 
Hi! Is there a tool out there to go through entire code base and change all
calls to a specific component to another component ? The code base is
somewhat large and it would take me 2 weeks to do it manually.

Infinite thanks in advance,

--M
I have always used a tool called "resharper" which can be found here
http://www.jetbrains.com/resharper/
Its a create plugin for visual studio and sure does speed up writting
code.

j1mb0jay
 
Hi! Is there a tool out there to go through entire code base and change all
calls to a specific component to another component ? The code base is
somewhat large and it would take me 2 weeks to do it manually.

Infinite thanks in advance,

--M
I have always used a tool called "resharper" which can be found here
http://www.jetbrains.com/resharper/
Its a create plugin for visual studio and sure does speed up writting
code.

j1mb0jay
 
The IDE refactor functions are not trustworthy for renaming, in my
experience. I've been burned badly multiple times, so I have always
undertaken even simple renames by hand, per file. I will check out
"resharper" though.
 
Back
Top