Delegate.Inequality Operator
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Determines whether the specified delegates are not equal.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
d1 As Delegate, _
d2 As Delegate _
) As Boolean
public static bool operator !=(
Delegate d1,
Delegate d2
)
Parameters
- d1
Type: System.Delegate
The first delegate to compare.
- d2
Type: System.Delegate
The second delegate to compare.
Return Value
Type: System.Boolean
true if d1 is not equal to d2; otherwise, false.
Exceptions
Exception | Condition |
---|---|
MethodAccessException | Application code attempts to access this member late-bound, for example, by using the Type.InvokeMember method. |
Remarks
Two delegates are considered not equal if they are of different types, or have different methods, different targets, or different invocation lists.
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 not equal if they have different sizes, if they are ordered differently, or if at least one element from one list represents a method or target that is different from that represented by its corresponding element in the other list.
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.