See Also: StructuralComparisons Members
The StructuralComparisons class returns the following two predefined comparison objects:
An IComparer implementation that can be passed to a method such as Array.System#Collections#IStructuralComparable#CompareTo(object, IComparer) or Tuple`3.System#Collections#IStructuralComparable#CompareTo(object, IComparer) to perform a structural comparison of two objects. It is designed to indicate whether the first object precedes, follows, or occurs in the same position as the second object in the sort order.
An IEqualityComparer implementation that can be passed to a method such as Array.System#Collections#IStructuralEquatable#Equals(object, IEqualityComparer) or Tuple`3.System#Collections#IStructuralEquatable#Equals(object, IEqualityComparer) to perform a comparison for structural equality.
The objects can be used to perform a structural comparison or a structural equality comparison of two collection objects, such as array or tuple objects. In structural comparison, two objects are compared based on their values. Objects can be ordered based on some criteria, and two objects are considered equal when they have equal values, not because they reference the same physical object