In MVC, you will likely have many views of the same name (e.g. Index.cshtml or Edit.aspx ) for different controllers.
Depending on your working style, you can open several tabs open in Visual Studio using a list of tabs that looks like this:
Index.cshtml|Index.cshtml|SomeController.cs|Edit.cshtml|Index.cshtml|Edit.cshtml|
You can hover over the tabs and wait for the context hint to appear, but I was wondering if anyone had a technique or plugin where the correct file could be more easily identified at a glance (i.e. Index.cshtml for SomeController )?
source share