[This is preliminary documentation and is subject to change.]

Indicates whether the current object is equal to another object of the same type.

Namespace: Tools.WindowsT.NativeT
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public bool Equals(
	Win32Window other
)
Visual Basic
Public Function Equals ( _
	other As Win32Window _
) As Boolean
Visual C++
public:
virtual bool Equals(
	Win32Window^ other
) sealed
F#
abstract Equals : 
        other:Win32Window -> bool 
override Equals : 
        other:Win32Window -> bool 
JScript
public final function Equals(
	other : Win32Window
) : boolean

Parameters

other
Type: Tools.WindowsT.NativeT..::..Win32Window
An object to compare with this object.

Return Value

true if the current object is equal to the other parameter; otherwise, false.

Implements

IEquatable<(Of <(<'T>)>)>..::..Equals(T)

See Also