MulticastDelegate.Equality Operator
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Determines whether two MulticastDelegate objects are equal.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Operator = ( _
d1 As MulticastDelegate, _
d2 As MulticastDelegate _
) As Boolean
public static bool operator ==(
MulticastDelegate d1,
MulticastDelegate d2
)
Parameters
- d1
Type: System.MulticastDelegate
The left operand.
- d2
Type: System.MulticastDelegate
The right operand.
Return Value
Type: System.Boolean
true if d1 and d2 have the same invocation lists; otherwise, false.
Exceptions
Exception | Condition |
---|---|
MemberAccessException | Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. |
Remarks
Two delegates are equal if they are not nulla null reference (Nothing in Visual Basic) 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.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.