I'm new to Visual Studio 2010 and C#. How can I indent the selected text to left/right by using shortcuts?

In Delphi IDE the equivalents are Ctrl+Shift+I and Ctrl+Shift+U
|
I'm new to Visual Studio 2010 and C#. How can I indent the selected text to left/right by using shortcuts?
In Delphi IDE the equivalents are Ctrl+Shift+I and Ctrl+Shift+U
| |||||||||||||
feedback
|
|
Tab and Shift+Tab will do that. Another cool trick is holding down ALT when you select text, it will allow you to make a square selection. Starting with VS2010, you can start typing and it will replace the contents of your square selection with what you type. Absolutely awesome for changing a bunch of lines at once. | |||||||||
feedback
|
|
Ctrl-K, Ctrl-D Will just prettify the entire document. Saves a lot of messing about, compared to delphi. | |||||||||||
feedback
|
|
If you would like nicely auto-formatted code. Try CTRL + A + K + F. While holding down CTRL hit a, then k, then f. | |||
|
feedback
|
|
Just hit Tab to push it over or on the menu bar Edit --> Advanced --> Format Selection and that will auto indent, the keyboard shortcut is also shown in the menu. | |||
|
feedback
|