This Navigate to command navigates to all exit points of a function or a method. If there is only one exit point, ReSharper will set the caret there; if there are several exits, they all will be highlighted.
This command becomes available when you invoke the Navigate To shortcut upon the name of the function or a method, getters and setters in properties, constructor names, return statements (to navigate to alternative exit points, if any), or throw statements.
For example, invoking Navigate To Function Exit(s) upon the name of the following
method highlights throw statements in if clauses,
as well as the final return statement:
Tip
To navigate to the next highlighted exit point, choose
ReSharper | Find | Next Item
or press
Ctrl+Alt+Down.
To navigate to the previous highlighted exit point, choose
ReSharper | Find | Previous Item
or press
Ctrl+Alt+Up.
