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);
        }