NSoft.NFramework.TimePeriods.TimeBlock.GetUnion C# (CSharp) 메소드

GetUnion() 공개 메소드

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