DelegateEquality Operator |
Determines whether the specified delegates are equal.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax 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:
Booleantrue if
d1 is equal to
d2; otherwise, false.
See Also