Overload | Description |
---|---|
Less Than(Debt,Debt) | Returns true if x is strictly lower than y. |
Less Than(Debt,TimeSpan) | Returns true if debt is strictly lower than timeSpan. |
Less Than(TimeSpan,Debt) | Returns true if timeSpan is strictly lower than debt. |
Less Than(Nullable<Debt>,Debt) | Returns true if x is not null and strictly lower than y. |
Less Than(Debt,Nullable<Debt>) | Returns true if y is not null and x is strictly lower than y. |
Less Than(Nullable<Debt>,Nullable<Debt>) | Returns true if both x and y are not null, and x value is strictly lower than y value. |
Less Than(Nullable<Debt>,TimeSpan) | Returns true if debt is not null and strictly lower than timeSpan. |
Less Than(TimeSpan,Nullable<Debt>) | Returns true if debt is not null and timeSpan is strictly lower than debt. |
Less Than(Debt,Nullable<TimeSpan>) | Returns true if timeSpan is not null, and debt is strictly lower than timeSpan. |
Less Than(Nullable<TimeSpan>,Debt) | Returns true if timeSpan is not null, and timeSpan is strictly lower than debt. |
Less Than(Nullable<Debt>,Nullable<TimeSpan>) | Returns true if both debt and timeSpan are not null, and debt is strictly lower than timeSpan. |
Less Than(Nullable<TimeSpan>,Nullable<Debt>) | Returns true if both debt and timeSpan are not null, and timeSpan is strictly lower than debt. |