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

GetUnion() public method

두 기간의 합집합 기간을 반환합니다.
public GetUnion ( ITimePeriod other ) : TimeBlock
other ITimePeriod
return TimeBlock
        public new TimeBlock GetUnion(ITimePeriod other) {
            other.ShouldNotBeNull("other");
            return TimeTool.GetUnionBlock(this, other);
        }