Esempio n. 1
0
 public void Merge(CountVowels Group)
 {
     //Accumulate(Group.Terminate());
     this.countOfVowels += Group.countOfVowels;
 }
 public void Merge(CountVowels value)
 {
     Accumulate(value.Terminate());
 }