I can right click a variable/method/class etc and click 'go to definition' and it will show me where that variable/method/class was created.
Is there a way to do the opposite of that? Is there a way to see where that variable/method/class is used in your C# project?
Right click, find all References. Or use Ctrl+K+R
UPDATE
I know where the Ctrl+K+R vs Shift+F12 confusion stems from. For developers that set up their environment settings for C#, Visual Basic or JavaScript, Ctrl+K+R is the keyboard shortcut that shows up in context menus. Shift+F12 is the keyboard shortcut that shows up in context menus when the environment settings is set up for Web Development or General.
To change the environment settings:
Tools > Import and Export Settings > No, just reset settings, overwriting my current settings > General / JavaScript / Visual Basic / Visual C# / Visual C++ / Visual F# / Web Development /Web Development (Code Only)
Try Shift + F12
It will find all references.