Delegate.Equals Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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)

Syntax

'Declaration
<SecuritySafeCriticalAttribute> _
Public Overrides Function Equals ( _
    obj As Object _
) As Boolean
[SecuritySafeCriticalAttribute]
public override bool Equals(
    Object obj
)

Parameters

  • obj
    Type: System.Object
    The object to compare with the current delegate.

Return Value

Type: System.Boolean
true if obj and the current delegate have the same targets, methods, and invocation list; otherwise, false.

Exceptions

Exception Condition
MemberAccessException

The caller does not have access to the method represented by the delegate (for example, if the method is private).

MethodAccessException

Application code attempts to access this member late-bound, for example, by using the Type.InvokeMember method.

Remarks

If the two delegates are not of the same type, they are not considered equal.

The methods and targets are compared for equality as follows:

  • If the two methods being compared are both static and are the same method on the same class, the methods are considered equal and the targets are also considered equal.

  • If the two methods being compared are instance methods and are the same method on the same object, the methods are considered equal and the targets are also considered equal.

  • Otherwise, the methods are not considered to be equal and the targets are also not considered to be equal.

Two invocation lists are considered identical only if they have the same order and the corresponding elements from the two lists represent the same method and target.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.