I know of the drop down list that SHOWS all the methods among many other things in a class but I am making a flow chart and for that I need a list as in text of all the methods in a class. How can I get this list because currently I am copy pasting manually the method names into a list which is so troublesome as I have 600ish methods…
Share
Use Visual Studio’s Refactor menu, and choose Extract Interface. Refactor->Extract Interface on MSDN for Visual Studio 2008.
Click button Select All, and click button OK. This will create a new file in your project for you.

You can then copy and paste as you need.
Be sure to go back to your class and remove the interface implementation code.