简体   繁体   中英

tools to get a list of all the subroutines(methods, functions)

Does anyone know of any tools to get a list of all the subroutines(methods, functions) in my projects. I have 6projs in one solution and need a basic tabular list with method name, called by(if possible), any other project details(would be helpful) I am using Microsoft visual studio 2010, C#

Thanks Sun.

The best option would probably be NDepend , as it can traverse your call hierarchy and generate graphs, tables, etc. but it's somewhat pricey. Or, for free, you write a script that can use the generated documentation files to list the methods/classes, but the hierarchy will be difficult. Or you could use a script to iterate through the C# files, though that's probably much more error prone.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM