コード例 #1
0
 public bool OverlapsWith(ITimePeriod test)
 {
     if (test == null)
     {
         throw new ArgumentNullException("test");
     }
     return(TimePeriodCalc.OverlapsWith(this, test));
 }
コード例 #2
0
 public bool HasInside(DateTime test)
 {
     if (test == null)
     {
         throw new ArgumentNullException("test");
     }
     return(TimePeriodCalc.HasInside(this, test));
 }