neuromancer
neuromancer

Reputation: 55579

How to highlight lines of code in Visual C#

I'm trying to debug a Visual C# program, and it would be helpful if I could highlight lines or do something similar to make them stand out. Is there a way to do that?

Upvotes: 0

Views: 375

Answers (3)

Bob
Bob

Reputation: 99834

Use Bookmarks with Highlighting.

Upvotes: 3

liya
liya

Reputation: 792

use some third party tool,such like JetBrains ReSharper.

Upvotes: 0

JohannesH
JohannesH

Reputation: 6450

You could use bookmarks for that (Ctrl+k, Ctrl+k). This will show an icon to the left of the text and also enable you to easily jump between your bookmarks.

Upvotes: 1

Related Questions