MulticastDelegate.Equality Operator
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Determines whether two MulticastDelegate objects are equal.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Operator = ( _ d1 As MulticastDelegate, _ d2 As MulticastDelegate _ ) As Boolean
Parameters
- d1
- Type: System.MulticastDelegate
The left operand.
- d2
- Type: System.MulticastDelegate
The right operand.
| Exception | Condition |
|---|---|
| MemberAccessException | Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. |
Two delegates are equal if they are not Nothing and are of exactly the same type, their invocation lists contain the same number of elements, and every element in the invocation list of the first delegate is equal to the corresponding element in the invocation list of the second delegate.
Two invocation list elements are equal if they invoke the same instance method on the same target instance, or they invoke the same static method.