Using Bookmark in Visual Studio






4.97/5 (14 votes)
Speedup code navigation using Bookmarking in Visual Studio
Introduction
As the name suggests, bookmarking speedup your code navigation in Visual Studio. There may be some portion of code where we need to move very frequently. Generally we scroll the page and move to that section, but Visual studio provides great features by which we can move to a particular section very quickly using some shortcut keys. This is called Bookmarking of Code.
Below are the set of Icons which are used to navigate the code using Bookmark.
How To Use
We can place the bookmark by clicking on Bookmark icon or using keys Ctrl + K, Ctrl + K.
Below is the sample code where I have put two bookmarks in different sections of code.
Now we can easily navigate among those breakpoints using Ctrl + K, Ctrl + N
for Next Bookmark and Ctrl + K , Ctrl + p
for Previous mark. We can achieve the same using the following toolbar icon.
This is very much easy to use and it gives you very fast navigation throughout the code.
Using Bookmark Window
Visual Studio provides you a Bookmark window where you can get a list of all bookmarked sections.
Now, by selecting a particular bookmark from the Bookmarks list, we can easily move to the particular section.
Renaming BookMarks
For easy reference, we can also rename bookmark so that we can easily identify them. This helps us to easily move to a particular code block based on the name given. This is useful when we are having many bookmarks in the bookmark list.
As I have renamed my bookmark list as below:
Summary
This may not be new to many of us, but it may helpful for some beginners. Using this feature, we can navigate our code very easily. Please provide your valuable suggestions and feedback.
CodeProject
