コード例 #1
0
ファイル: StrConcat.cs プロジェクト: viraldim/Databases
 public void Merge(StrConcat group)
 {
     // append to the result only if the group has value
     if (group.hasValue)
     {
         this.result.Append(group.delimiter);
         this.result.Append(group.result);
     }
 }
コード例 #2
0
 public void Merge(StrConcat group)
 {
     // append to the result only if the group has value
     if (group.hasValue)
     {
         this.result.Append(group.delimiter);
         this.result.Append(group.result);
     }
 }