Is there a way to bookmark code in a Visual Studio project?
In Visual Studio, you can set Bookmarks in the code.
To jump between Bookmarks:
Ctrl + K + N (for next)
and
Ctrl + K + P (for previous)
To toggle a Bookmark on/off for a line:
Ctrl + K + K
Yes, press the hotkey combination Ctrl + K + K (that's Ctrl and K, followed by another K) to toggle a bookmark.
Then you can do Ctrl + K + N for the next bookmark and Ctrl + K + P for the previous bookmark.
It works like a charm!