Record describing a method.
Source position: objpash.inc line 211
| type TMethod = record | ||
| public | ||
| Code: CodePointer; | 
 | Pointer to method code. | 
| Data: Pointer; | 
 | Pointer to object instance. | 
| class operator equal(TMethod,TMethod):Boolean(); | ||
| class operator notequal(TMethod,TMethod):Boolean(); | ||
| class operator greaterthan(TMethod,TMethod):Boolean(); | ||
| class operator greaterthanorequal(TMethod,TMethod):Boolean(); | ||
| class operator lessthan(TMethod,TMethod):Boolean(); | ||
| class operator lessthanorequal(TMethod,TMethod):Boolean(); | ||
| 
 | ||
| end; | 
TMethod describes a general method pointer, and is used in Run-Time Type Information handling.