In This Topic
Indicates whether the current value is equal to another value of the same type.
Syntax
'Declaration
Public Overloads Function Equals( _
ByVal As Point _
) As Boolean
'Usage
Dim instance As Point
Dim other As Point
Dim value As Boolean
value = instance.Equals(other)
public bool Equals(
Point
)
Parameters
- other
- A value to compare with this value.
Return Value
true
if the current object is equal to the other parameter; otherwise, false
.
See Also