Click or drag to resize
DelegateEquals Method
Determines whether the specified object and the current delegate are of the same type and share the same targets, methods, and invocation list.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public override bool Equals(
	Object obj
)

Parameters

obj
Type: SystemObject
The object to compare with the current delegate.

Return Value

Type: Boolean
true if obj and the current delegate have the same targets, methods, and invocation list; otherwise, false.
Exceptions
ExceptionCondition
MemberAccessExceptionThe caller does not have access to the method represented by the delegate (for example, if the method is private).
See Also