Is their any way to list functions names that are written .cs file in visual studio 2013

1.9k Views Asked by At

I want to know that is their any way to list all the functions names that are written in my c# .cs code in visual studio 2013. I know that if I know function names than by using peek definition or using f12, I can jump to that function definition, but what about the case when my code file contains number of function and I have to list all function declaration list so that I can easily search to function I am looking at and jump to its definition in visual studio 2013.

For Example- Suppose i have written a c# code(Code length > 4000 lines) that contains multiple method names and if i save my file and after sometime i again open it. Now this time forgot the name of my method then, is their any way i can list all the function declaration of that file in visual studio 2013, so that i can easily jump to that function.

Plz let me know!

1

There are 1 best solutions below

3
Sterling C. On BEST ANSWER

There is a drop down box in the navigation bar just above the text editor in the upper right that lists the methods in the current file. See this answer for more info.