Retrieves the total number of methods in the class, including non-static super methods.
unsigned __cdecl Class_GetMethodCount(ClassClass *cls);
Returns the number of methods.
*cls | The address of the class object. Use FindClass to determine. |
This function is intended for use with Class_GetMethodByIndex to enumerate methods in a class.
This function returns the total count of all members, not just the count of those declared in the class specified. To find declared members, you must enumerate methods and call Member_GetClass on each to determine where the method is implemented.