示例#1
0
 /// <summary>
 /// Checks if the value is greater than or equal MinValue.
 /// </summary>
 /// <param name="interval">The interval to compare.</param>
 /// <param name="value">A value to compare with MinValue.</param>
 /// <returns>true if the specific value is greater than or equal MinValue; otherwise, false.</returns>
 public static bool IsGreaterThanOrEqualMinValue <T>(this ISimpleInterval <T> interval, T value)
 {
     return(interval.IsGreaterThanMinValue(value) || interval.EqualsMinValue(value));
 }