Get the list of methods of a class

Viewed 18698

Is there a way to create a list (e.g. an array) of pointers to each method of a C++ class?

Something like Type.GetMethods() in the .NET framework, but using only standard C++.

7 Answers
Related