ClassReverseComparer<T>
Class
The reverse comparer.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
T
The data type being compared.
Syntax:
cs-api-definition
public sealed class ReverseComparer<T> : IComparer<T>
Inheritance: objectReverseComparer<T>
Implements:
Constructors
ReverseComparer()
Initializes a new instance of the ReverseComparer<T> class. Initializes a new instance of the ReverseComparer<T> class.
Declaration
cs-api-definition
public ReverseComparer()
ReverseComparer(IComparer<T>)
Initializes a new instance of the ReverseComparer<T> class. Initializes a new instance of the ReverseComparer<T> class.
Declaration
cs-api-definition
public ReverseComparer(IComparer<T> comparer)
Parameters
comparer
IComparer<T>
The comparer.
Properties
Methods
Compare(T, T)
Compares the specified x.
Declaration
cs-api-definition
public int Compare(T x, T y)
Parameters
x
T
The x.
y
T
The y.
Returns
The compare.
Implements