コード例 #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;
 }