コード例 #1
0
ファイル: Concatenate.cs プロジェクト: odelljl/sqlproj
 /// <summary> 
 /// Merge the partially computed aggregate with this aggregate. 
 /// </summary> 
 /// <param name="other"></param> 
 public void Merge(Concatenate other)
 {
     intermediateResult.Append(other.intermediateResult);
 }
コード例 #2
0
 /// <summary>
 /// Merge the partially computed aggregate with this aggregate.
 /// </summary>
 /// <param name="other"></param>
 public void Merge(Concatenate other)
 {
     intermediateResult.Append(other.intermediateResult);
 }