Click or drag to resize
DelegateEquality Operator
Determines whether the specified delegates are 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 equal to d2; otherwise, false.
See Also