예제 #1
0
파일: RowList.cs 프로젝트: tonychue/public
        public RowList Exclude(RowList other, List <int> compareColumns)
        {
            var records = rows
                          .Where(row => !IsFoundIn(row, other.rows, compareColumns))
                          .ToList();

            return(new RowList(records));
        }
예제 #2
0
 public Table(string[] columns, RowList rows)
 {
     Columns = columns;
     Rows    = rows;
 }