Overload | Description |
---|---|
Greater Than or Equal(Debt,Debt) | Returns true if x is higher than or equal to y. |
Greater Than or Equal(Debt,TimeSpan) | Returns true if debt is higher than or equal to timeSpan. |
Greater Than or Equal(TimeSpan,Debt) | Returns true if timeSpan is higher than or equal to debt. |
Greater Than or Equal(Nullable<Debt>,Debt) | Returns true if x is not null and higher than or equal to y. |
Greater Than or Equal(Debt,Nullable<Debt>) | Returns true if y is not null and x is higher than or equal to y. |
Greater Than or Equal(Nullable<Debt>,Nullable<Debt>) | Returns true if both x and y are not null, and x value is higher than or equal to y value. |
Greater Than or Equal(Nullable<Debt>,TimeSpan) | Returns true if debt is not null and higher than or equal to timeSpan. |
Greater Than or Equal(TimeSpan,Nullable<Debt>) | Returns true if debt is not null and timeSpan is higher than or equal to debt. |
Greater Than or Equal(Debt,Nullable<TimeSpan>) | Returns true if timeSpan is not null, and debt is higher than or equal to timeSpan. |
Greater Than or Equal(Nullable<TimeSpan>,Debt) | Returns true if timeSpan is not null, and timeSpan is higher than or equal to debt. |
Greater Than or Equal(Nullable<Debt>,Nullable<TimeSpan>) | Returns true if both debt and timeSpan are not null, and debt is higher than or equal to timeSpan. |
Greater Than or Equal(Nullable<TimeSpan>,Nullable<Debt>) | Returns true if both debt and timeSpan are not null, and timeSpan is higher than or equal to debt. |