Blackybecks
Blackybecks

Reputation: 21

Meaning of Visual Studio Icons

I was searching for a List of the meanings for the Icons in the Visual Studio Editor. Image of the icons

hopefully, someone could explain me the meaning...

I can't find something in Google...

Greets

Upvotes: 1

Views: 1024

Answers (1)

hcerim
hcerim

Reputation: 999

Those are Bookmarks.

The Bookmarks window is a handy companion tool to the Code Editor. You can mark lines in your code files with bookmarks and then organize these bookmarks into virtual folders. This enables you to open files and navigate directly to the lines marked simply by clicking entries in the Bookmarks window.

In most Visual Studio programming languages, you can also create Task List shortcuts and comments.

As with bookmarks, you can click on any entry in the Task List to open a file and jump to the line of code marked.

See this and this.

Upvotes: 2

Related Questions