コード例 #1
0
ファイル: TimeIntervals.cs プロジェクト: laeubisoft/pwiz
 public TimeIntervals Intersect(TimeIntervals other)
 {
     using (var myIntervals = Intervals.GetEnumerator())
         using (var otherIntervals = other.Intervals.GetEnumerator())
         {
             return(FromIntervalsSorted(Intersect(myIntervals, otherIntervals)));
         }
 }