示例#1
0
 /// <summary>
 /// Creates a new FairMergePipe based on the given Pipes.
 /// </summary>
 public FairMergePipe(params IPipe[] Pipes)
 {
     this._Pipes = Pipes;
     this.total  = Pipes.Count();
 }
示例#2
0
 /// <summary>
 /// Creates a new ExhaustiveMergePipe based on the given Pipes.
 /// </summary>
 public ExhaustiveMergePipe(params IPipe[] Pipes)
 {
     this._Pipes = Pipes;
     this.total  = Pipes.Count();
 }