I have inherited a large C# project where all the variable and parameter names are written_like_this
.
Is there some easy way or tool I could use to rename them all automatically with no more than say 10 mouse clicks. So that the above example would become writtenLikeThis
(i.e. camel case). And instance variables _writtenLikeThis
.
It would also need to update the XMLDoc comments as well.
I could probably knock something up with a Regex, but only if I'm not rewriting a wheel.
Thanks.