예제 #1
0
 public override void EndTable()
 {
     // Output the sorted rows.
     Rows.Sort(this);
     foreach (Value[] r in Rows)
     {
         if (!Output.NewRow(r))
         {
             break;
         }
     }
     Output.EndTable();
 }