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

Checks to see if the specified IComparable value is equal to this value

Namespace: Clarion.Framework.Core
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
public bool Equals(
	IComparable val
)

Parameters

val
Type: System..::..IComparable
The IComparable value to be checked for equality

Return Value

True if the values are equal, otherwise False

Implements

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

Remarks

This method has been implemented with the following considerations:
  • If the specified IComparable is the same type as the (inner) value, then the default equality check (for that type) will be used
  • If the specified IComparable is of a different type, then the string representation of the values will be checked for equality

See Also