private void RemoveFromSlot(ref IntervalCollection slot, Interval interval)
 {
     if (slot != null)
     {
         slot.Remove(interval);
         if (!slot.HasIntervals)
         {
             slot = null;
         }
     }
 }
예제 #2
0
 private void RemoveFromSlot(ref IntervalCollection slot, Interval interval)
 {
     if (slot != null)
     {
         slot.Remove(interval);
         if (!slot.HasIntervals)
         {
             slot = null;
         }
     }
 }
예제 #3
0
 void RemoveFromSlot(ref IntervalCollection slot, Interval interval)
 {
     if (null != slot)
     {
         slot.Remove(interval);
         if (!slot.HasIntervals)
         {
             slot = null;
         }
     }
 }
 void RemoveFromSlot(ref IntervalCollection slot, Interval interval)
 {
     if (null != slot)
     {
         slot.Remove(interval);
         if (!slot.HasIntervals)
         {
             slot = null;
         }
     }
 }