01-Navigation/4-Contextual_navigation/4.7_Navigate_To_menu_related_files_partial.cs (7 lines of code) (raw):
// Navigate To menu - Related files Partial
//
// This is a convenient way to navigate from the current location.
// See "4.1-Navigate_To_menu.cs" for the basic mechanism.
//
// How to use Navigate to
// <shortcut id="Navigate to">Alt+` (ReSharper VisualStudio Keymap)</shortcut>
// <shortcut id="Navigate to">Ctrl+Shift+G (Rider Default IntelliJ Keymap)</shortcut>
//
// Put the caret on the target and use the keyboard shortcut.
//
// 1. Navigate to related files. E.g. other files containing partial class
// Put text caret here →
// Related Files... shows list of other files containing definitions of PartialClass
namespace JetBrains.ReSharper.Koans.Navigation
{
public partial class PartialClass
{
}
}