Version

Equals(Project) Method

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

Parameters

project
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