Reputation: 202
I am new to coding C# in Visual Studio. In particular, the latest 2019 version.
I know that pressing ctrl + F12
on a function will see its implementation.
However, which hotkey should I press on a function to see its application, i.e., where is it called.
Does it even exist?
Upvotes: 1
Views: 58
Reputation: 3027
The Find All References command is available on the context (right-click
) menu of the element you want to find references
to. Or, if you are a keyboard user, press Shift + F12
.
more details about references...
Upvotes: 0