Link to home
Start Free TrialLog in
Avatar of BASESLydia
BASESLydia

asked on

Is there a way to determine all of a class's methods?

I have a drop down box I would like to populate with the names of all methods in a public class. Is there a way to loop through a class's methods?
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

A hint: You need to use Reflection.
ASKER CERTIFIED SOLUTION
Avatar of Glom
Glom
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BASESLydia
BASESLydia

ASKER

Excellent! I appreacite the hint emoreau, but Glom's code works without me having to make any guesses!