| [Overview][Classes][Procedures and functions][Index] |
Performs a comparison between the specified methods.
Source position: lazmethodlist.pas line 67
function CompareMethods( |
const m1: TMethod; |
const m2: TMethod |
):Boolean; |
m1 |
|
Method for the comparison. |
m2 |
|
Another method for the comparison. |
True when the compared methods share the same code and data.
CompareMethods is a Boolean function used to compare the specified methods. m1 and m2 are TMethod parameters with the values compared in the function. The comparison examines the Code and Data members in the TMethod records. The return value is True when the Code and Data members are identical in both records.