LEADTOOLS Multimedia (Leadtools.Multimedia assembly) Send comments on this topic. | Back to Introduction | Help Version 17.0.3.22
Equals Method
See Also 
Leadtools.Multimedia Namespace > TargetDevice Class : Equals Method



obj
The Object to be compared with the current Object.
obj
The Object to be compared with the current Object.
Determines whether the specified Object is equal to the current Object.

Syntax

Visual Basic (Declaration) 
Overrides Public Function Equals( _
   ByVal obj As Object _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As TargetDevice
Dim obj As Object
Dim value As Boolean
 
value = instance.Equals(obj)
C# 
public override bool Equals( 
   object obj
)
C++/CLI 
public:
bool Equals( 
   Object^ obj
) override 

Parameters

obj
The Object to be compared with the current Object.

Return Value

System.Boolean true if the specified Object is equal to the current Object; false, otherwise

Remarks

The default implementation of Equals supports reference equality for reference types, and bitwise equality for value types. Reference equality means the object references that are compared refer to the same object. Bitwise equality means the objects that are compared have the same binary representation.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also