1

Can't find something like "tagbar window" in visual studio or his alternatives.

Tagbar - clickable short summary of the active source file. List of methods, fields, enumeration etc...

Screenshot for explanation (in Vim). Tagbar is at right side. enter image description here

So, how c# developers navigate inside huge class files?

Stepan Loginov
  • 1,667
  • 4
  • 22
  • 49

2 Answers2

1

There's a dropdown menu to the top right of your code called the Navigation Bar. If it's missing try the instructions in this question.

Community
  • 1
  • 1
Owen Pauling
  • 11,349
  • 20
  • 53
  • 64
1

You can expand a file in Solution Explorer to see its methods and members:

enter image description here

See also Viewing the Structure of Code describing Class View, Call Hierarchy, Object Browser and Code Definition Window.

Sergey Vlasov
  • 26,641
  • 3
  • 64
  • 66