Reputation: 9956
In Visual Studio 2005, Consider my program has a loop containing 10000 lines of code with in it. If i select the Beginning or End brace '{ or }' of the loop, how can i navigate to the other brace'} or {' of the loop.?
Upvotes: 3
Views: 708
Reputation: 21488
Yup, and pressing CTRL+] on the closing brace will take you to the opening brace. So it works both ways.
Upvotes: 1
Reputation: 7119
Pressing ctrl + ] should take you to the matching close brace for any highlighted open brace (and indeed the matching start brace for any close brace selected)
Upvotes: 3