GetIntersectionBlock() public static method

두 기간의 공통되는 기간을 반환한다. (교집합)
public static GetIntersectionBlock ( this period, ITimePeriod target ) : TimeBlock
period this
target ITimePeriod
return TimeBlock
Esempio n. 1
0
 /// <summary>
 /// 두 기간의 겹치는 기간을 반환합니다.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public new TimeBlock GetIntersection(ITimePeriod other)
 {
     other.ShouldNotBeNull("other");
     return(TimeTool.GetIntersectionBlock(this, other));
 }