Operations<T>.Compare Property
Gets a delegate that compares two values.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A delegate that returns an integer that indicates the relative values of its arguments as shown in the following table:
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Func<T, T, int> Compare { get; }Property Value
Func<T, T, Int32>A delegate that returns an integer that indicates the relative values of its arguments as shown in the following table:
| Value | Description |
|---|---|
| Less than zero | The first argument is less than the second argument. |
| Less equal to zero | The first argument is equal to the second argument. |
| Greater than zero | The first argument is greater than the second argument. |