Retrieves a handle to a method specified by index.
struct methodblock* __cdecl Class_GetMethodByIndex(ClassClass* cls, unsigned index);
Returns a method block pointer.
cls | The address of the class object. Use FindClass to determine. |
index | The index value of the method in the class. The index must be between 0 (zero) and the method count (returned from Class_GetMethodCount) minus 1, inclusive. |