Delegate.Equality Operator
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Determines whether the specified delegates are equal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
- Type: System.Delegate
The first delegate to compare.
- d2
- Type: System.Delegate
The second delegate to compare.
| Exception | Condition |
|---|---|
| MethodAccessException | Application code attempts to access this member late-bound, for example, by using the Type.InvokeMember method. |
Two delegates of the same type with the same targets, methods, and invocation lists are considered equal.
If the two delegates are not of the same type, they are not considered equal.
The methods and targets are compared for equality as follows:
If the two methods being compared are both static and are the same method on the same class, the methods are considered equal and the targets are also considered equal.
If the two methods being compared are instance methods and are the same method on the same object, the methods are considered equal and the targets are also considered equal.
Otherwise, the methods are not considered to be equal and the targets are also not considered to be equal.
Two invocation lists are considered identical if they have the same order and the corresponding elements from the two lists represent the same method and target.