IamMan
IamMan

Reputation: 442

Navigate to special line of file in Visual Studio + ReSharper

Are there any way in VS + ReSharper for navigate to special line number?

Upvotes: 8

Views: 2083

Answers (2)

Dmitri Nesteruk
Dmitri Nesteruk

Reputation: 23789

With ReSharper 8 onwards, you can just CtrlT, type in something like Foo.cs 20 and go to line 20 in the file Foo.cs.

Upvotes: 10

Oded
Oded

Reputation: 498972

Not sure I understand what you mean, but if you simply want to navigate to a specific line in a file, use Ctrl + g and enter the line number.

This is the same as the Edit -> Go To... menu item.

Upvotes: 11

Related Questions