Visual Studio Editing

  • Thread starter Thread starter Ricardo
  • Start date Start date
R

Ricardo

Is there a way in visual studio .net 2k3 to find the close }??

I have an open { in a line and i want to find where the close } is... (the
program is to long and complicate)...


[]s...
 
Ricardo said:
Is there a way in visual studio .net 2k3 to find the close }??

In the default setting it is: Ctrl-´

But you can go to "Tools|Options|Environment|Keyboard" and select the
command "Edit.GotoBrace" and then you will see the shortcut (or you can
change it).

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
 
Ricardo,

I'm not saying it's necessarily true here, but whenever my closing braces
get so far away from my opening braces that I have trouble finding them, I
usually take this as evidence that the method has gotten too long-winded and
needs refactoring.

--Bob
 
Ctrl + ]

does it on my default installation of VS.NET but it might be different on
other...?
 
I would have to agree with Bob here, maybe time to revist the method?

marc.

Bob Grommes said:
Ricardo,

I'm not saying it's necessarily true here, but whenever my closing braces
get so far away from my opening braces that I have trouble finding them, I
usually take this as evidence that the method has gotten too long-winded
and needs refactoring.

--Bob

Ricardo said:
Is there a way in visual studio .net 2k3 to find the close }??

I have an open { in a line and i want to find where the close } is...
(the
program is to long and complicate)...


[]s...
 
Back
Top