Version

Equals(Task) Method

Returns whether the specified Task is the same logical instance as this task.
Syntax
'Declaration
 
Public Overloads Function Equals( _
   ByVal task As Task _
) As Boolean
public bool Equals( 
   Task task
)

Parameters

task
Remarks

This method first uses the ReferenceEquals method to determine whether the object references are identical; if they are, true is returned. If not, an additional check is performed whereby the values of each instance's Id is compared; if they are the same, true is returned.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also