I want to generate a list of all methods in a class or in a directory of classes. I also need their return types. Outputting it to a textfile will do...Does anyone know of a tool, lug-in for VS or something which will do the task? Im using C# codes by the way and Visual Studio 2008 as IDE
|
|
|||||||||
|
|
|
Sure - use Type.GetMethods(). You'll want to specify different binding flags to get non-public methods etc. This is a pretty crude but workable starting point:
Output:
(etc) |
|||
|
|
|
You can get at these lists very easily with reflection. e.g. with |
||
|
|
|
|
This should do the trick. In short - you can get information about class and it's methods through process called reflection. |
||
|
|
|
|
|
||
|
|
