Andes Lam
Andes Lam

Reputation: 202

Visual Studio 2019 C# Hotkey for seeing application of function

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

Answers (2)

Vlad Feinstein
Vlad Feinstein

Reputation: 11311

"Find All References" - Shift+F12

Upvotes: 2

Mustafa Poya
Mustafa Poya

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...

enter image description here

Upvotes: 0

Related Questions