Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Determines whether two MulticastDelegate objects are not 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
)
public:
static bool operator !=(
MulticastDelegate^ d1,
MulticastDelegate^ d2
)
static let inline (<>)
d1:MulticastDelegate *
d2:MulticastDelegate : bool
JScript does not support overloaded operators.
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 do not have the same invocation lists; otherwise, false.
Remarks
Two delegates are equal if they are not null Nothing nullptr unit a 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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.