Equals Method
Collapse the table of content
Expand the table of content

MulticastDelegate.Equals Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Determines whether this multicast delegate and the specified object are equal.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Overrides NotOverridable Function Equals ( _
	obj As Object _
) As Boolean

Parameters

obj
Type: System.Object
The object to compare with this instance.

Return Value

Type: System.Boolean
true if obj and this instance have the same invocation lists; otherwise, false.

ExceptionCondition
MemberAccessException

Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism.

Two delegates are equal if they are not Nothing and are of exactly the same type, their invocation lists contain the same number of elements, and every element in the invocation list of the first delegate is equal to the corresponding element in the invocation list of the second delegate.

Two invocation list elements are equal if they invoke the same instance method on the same target instance, or they invoke the same static method.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft