ClassObjectComparer
Class
Exposes a method that compares two objects.
Definition
Namespace:Telerik.Pivot.Core
Assembly:Telerik.Pivot.Core.dll
Syntax:
cs-api-definition
[DataContract]
public abstract class ObjectComparer : SettingsNode, INotifyPropertyChanged, ISupportInitialize, IServiceProvider, IEditable, IComparer
Inheritance: objectCloneableSettingsNodeObjectComparer
Implements:
Inherited Members
Constructors
ObjectComparer()
Declaration
cs-api-definition
protected ObjectComparer()
Methods
Compare(object, object)
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
Declaration
cs-api-definition
public abstract int Compare(object x, object y)
Parameters
x
The first object to compare.
y
The second object to compare.
Returns
A signed integer that indicates the relative values of x and y, as shown in the following table.Value Meaning Less than zero x is less than y. Zero x equals y. Greater than zero x is greater than y.
Implements