コード例 #1
0
 public Aggregate(AggregateObservable <TSource> parent, IObserver <TSource> observer, IDisposable cancel) :
     base(observer, cancel)
 {
     this.parent    = parent;
     this.seenValue = false;
 }
コード例 #2
0
 public Aggregate(AggregateObservable <TSource, TAccumulate> parent, IObserver <TAccumulate> observer, IDisposable cancel) : base(observer, cancel)
 {
     this.parent       = parent;
     this.accumulation = parent.seed;
 }