NSoft.NFramework.TimePeriods.TimeBlock.GetIntersection C# (CSharp) Method

GetIntersection() public method

두 기간의 겹치는 기간을 반환합니다.
public GetIntersection ( ITimePeriod other ) : TimeBlock
other ITimePeriod
return TimeBlock
        public new TimeBlock GetIntersection(ITimePeriod other) {
            other.ShouldNotBeNull("other");
            return TimeTool.GetIntersectionBlock(this, other);
        }