Standard implementation of the less than operator.
public static bool OperatorLessThan<T>(T? left, T? right)
where T : class, IComparable<T>
| parameter | description |
|---|---|
| left | The left item. |
| right | The right item. |
True if the left is less than the right.