How can I select all property names starting with an underscore and replace it with the same property name, but without an underscore? This is a very tedious task, and I want to use the VS2012 function for search and replace in order to simplify it.
Edit:
I managed to select all property names with underscores with this regex
(?<!\w)_\w+
But how to replace it with the same class name, except underscore?
source
share