ComparableImpl.OperatorGreaterThan<T> method

Standard implementation of the greater than operator.

public static bool OperatorGreaterThan<T>(T? left, T? right)
    where T : class, IComparable<T>
parameter description
left The left item.
right The right item.

Return Value

True if the left is greater than the right.

See Also