views:

56

answers:

3

Hi guys,

Just wondering if anyone knows the keyboard shortcut to swap around two sides of a statement. For example:

I want to swap

firstNameTextbox.Text = myData.FirstName;

to

myData.FirstName = firstNameTextbox.Text;  

Does anyone know the shortcut, if there is one? Obviously I would type them out, but there is a lot of statements I need to swap, and I think a shortcut like that would be useful!

Feel free to throw in any shortcuts you think are cool!

My contribution would be "CTRL + E, D" - this will format your code to Visual Studio standards! Pretty well known I'm guessing but I use it all the time! :)

UPDATE

Just to let everyone know, using a bit of snooping of the article that was posted, I managed to construct a regular expression, so here it is:

Find:

{.+\.Text = myData\..+};

And replace with:

\2 = \1;

Hopefully people can apply this to their own expressions they want to swap!

Thanks everyone!

+1  A: 

I think the following thread is a good place to begin with

http://stackoverflow.com/questions/1012807/invert-assignment-direction-in-visual-studio

cherhan
A: 

Here's how I would go about doing that without a specific keyboard shortcut:

  • First, select the text you want to modify and replace

    " = " with "                 =               "
    

    (the key here is to add a lot of spaces).

  • If you hold down Alt and use the mouse, you can select a "block" of code. Use this to select only the text on the right side of the equation (it's helpful to add extra white space here in your selection)
  • Use the same Alt + Left-Click combination to select the beginning of the left side (just select a blank area). You should be able to paste text into here.
  • If you added extra white space to the text you just added, just should be able to easily insert an = using the Alt + Click technique. Use the same trick to remove the equal sign that's dangling on the right side of your code block.

While this might not do exactly what you're looking for, I've found these tricks quite useful.

Ben McCormack
A: 

If you're using ReSharper, you can do this by pressing CtrlAltShift + or

hmemcpy