As a developer one of the common task that we perform during the development is finding the code references using “Find All References” features. This is very much known to us and we all know why we used it. In Visual Studio 2013, the same things can be achieved in much easier and visualize way. You can see the number of reference as and when you are referring a class, properties, member variable or a method. You can call this feature as “Code Reference Indicator” which is part of “Code Information Indicator’ feature of Visual Studio 2013 Preview.
As shown in the image below, the references are show in the just top of referenced members.
Fig: Reference count of student class and and its properties.
You can just click on the indicator to see the referenced places of the members.
Fig: Code from where Student class is referred.
From the referenced popup windows, you can directly click on the referred code block to navigate. Also a mouse over on the referred item can give view quick code block as tooltip as show in the following image.
Fig: A Quick Tool Tip indicating the file name, line number and small code block.
Note: This code reference indicator is just an indicator, it will not count as your LOC. You can see the easily line gap between the code line in the following image.
Fig: Code Reference Indicator, does not counts as line.
Code Reference Indicator is a part of Code Information Indicator. The are few additional uses of of “Code Information Indicator” which we will be discussing in up coming tips.