MulticastDelegate::Inequality Operator
Determines whether two MulticastDelegate objects are not equal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
- Type: System::MulticastDelegate
The left operand.
- d2
- Type: System::MulticastDelegate
The right operand.
Return Value
Type: System::Booleantrue if d1 and d2 do not have the same invocation lists; otherwise, false.
| 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 nullptr 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.
- ReflectionPermission
when invoked late-bound through mechanisms such as Type::InvokeMember. Associated enumeration: ReflectionPermissionFlag::MemberAccess
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.