I am trying to create a surround-with template with resharper that formats a selection like this
string foo = "A text with spaces";
into this:
string foo = Translate("ATextWithSpaces");
I want to select the "A text with spaces" myself, press the surround-with shortcut and just watch it happen!
I have a template that produces
string foo = Translate("A text with spaces")
...but that's not good enough for me. Any suggestions?