5

I was using Visual Studio 2015 RC for a while and one of the handy features was a line of text above each method/class definition that had info about the method or class (number of references, date of last edit, name of last editor).

Method Definition

But I just installed Visual Studio 2015 Enterprise and this information is gone. Does anybody know how to re-enable this feature?

Jason Evans
  • 28,906
  • 14
  • 90
  • 154
Seth
  • 706
  • 4
  • 20
  • 2
    In the VS IDE, try Ctrl-Q, to get to the search box in the top right. In that box type "codelens" and see if anything comes up. Maybe it is possible to turn it on/off by a setting. – Jason Evans Jul 23 '15 at 18:06

1 Answers1

6

That is a feature of Visual Studio called CodeLens.

You can enable it by going to Tools | Options | Text Editor | All | Languages | Code Information Indicators.

You could also use the Quick Launch feature (Control+Q) to search for "CodeLens".

Alex Booker
  • 10,487
  • 1
  • 24
  • 34