Getting all information about a method
Is it possible to get all the information about a mathod using methoddoc or some other class, i.e.
publicvoid method1 (int param1, String param2, ...)
{
blah blah blah
}
I'd get back
publicvoid method1 (int param1, String param2, ...)
I'm using methoddoc.flatsignature() but this returns:
(int, String)
I need to include the variables.
Message was edited by:
Rebels_Mascot

