Click or drag to resize
DelegateInequality Operator
Determines whether the specified delegates are not equal.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static bool operator !=(
	Delegate d1,
	Delegate d2
)

Parameters

d1
Type: SystemDelegate
The first delegate to compare.
d2
Type: SystemDelegate
The second delegate to compare.

Return Value

Type: Boolean
true if d1 is not equal to d2; otherwise, false.
See Also