Method |
Description |
|
IsEqual ( Event first, Event second ) : bool |
two events are equal if they have the same name. |
|
IsEqual ( Member first, Member second ) : bool |
|
|
IsEqual ( Method first, Method second ) : bool |
checks if one method has the same signature as the other method. This is the case if the name and the order and signature of the parameters is the same. The return type does not play a rule since two methods with the same name and parameters cannot have the same return type. |
|
IsEqual ( Property first, Property second ) : bool |
checks if the second property is an implementation of the first property. In case of properties, it is enough to check the name since two properties in the same class cannot have the same name |
|