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

Checks to see if the specified object 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 override bool Equals(
	Object obj
)

Parameters

obj
Type: System..::..Object
The object to be checked for equality

Return Value

True if the values are equal, otherwise False

Remarks

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

See Also