Example #1
0
 public override void FromRawData(byte [] buff, int offs, int numRows)
 {
     for (int i = numRows; --i >= 0;)
     {
         Row row = new FileRow(this);
         row.FromRawData(buff, offs);
         Add(row);
         offs += FileRow.LogicalSize;
     }
 }