GetUnionBlock() public static méthode

두 기간의 합집합 기간을 반환한다.
public static GetUnionBlock ( this period, ITimePeriod target ) : TimeBlock
period this
target ITimePeriod
Résultat TimeBlock
Exemple #1
0
 /// <summary>
 /// 두 기간의 합집합 기간을 반환합니다.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public new TimeBlock GetUnion(ITimePeriod other)
 {
     other.ShouldNotBeNull("other");
     return(TimeTool.GetUnionBlock(this, other));
 }