GetRelation() 공개 정적인 메소드

public static GetRelation ( ITimePeriod period, ITimePeriod test ) : PeriodRelation
period ITimePeriod
test ITimePeriod
리턴 PeriodRelation
예제 #1
0
        } // OverlapsWith

        // ----------------------------------------------------------------------
        public virtual List <PeriodRelation> GetRelation(ITimePeriod test)
        {
            if (test == null)
            {
                throw new ArgumentNullException("test");
            }
            return(TimePeriodCalc.GetRelation(this, test));
        } // GetRelation
예제 #2
0
        } // OverlapsWith

        // ----------------------------------------------------------------------
        public virtual List <PeriodRelation> GetRelation(ITimePeriod test)
        {
            CommonMethods.checkNull(test, "test @ GetRelation");
            return(TimePeriodCalc.GetRelation(this, test));
        } // GetRelation