コード例 #1
0
 public ExportRow(ExportRow row)
 {
     if (row != null)
     {
         this.RowType = row.RowType;
         foreach (object text in row.CellList)
         {
             this.CellList.Add(text.ToString());
         }
     }
 }
コード例 #2
0
 public ExportRow(ExportRowType rowType)
 {
     this.RowType = rowType;
 }