StringSegmentComparerEquals(Object, Object) Method
When overridden in a derived class, indicates whether two objects are equal.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public bool Equals(
Object? x,
Object? y
)
Public Function Equals (
x As Object,
y As Object
) As Boolean
public:
virtual bool Equals(
Object^ x,
Object^ y
) sealed
abstract Equals :
x : Object *
y : Object -> bool
override Equals :
x : Object *
y : Object -> bool
- x Object
- An object to compare to y.
- y Object
- An object to compare to x.
Boolean if
x and
y refer to the same object, or
x and
y are both
the same type of object and those objects are equal, or both
x and
y are
; otherwise,
.
IEqualityComparerEquals(Object, Object)