Retrieves a handle to a method explicitly specified by name. This handle is needed to get any further information about the method.
struct methodblock* __cdecl Class_GetMethod(ClassClass *cls, const char *name, const char *signature);
Returns a handle to a method in the given class specified by name and signature.
cls | The address of the class object. Use FindClass to determine the class. |
*name | The name of the method in the class. |
*signature | The types of parameters passed to the constructor. |