0

DataTable 内のすべてのセルの数を取得する必要があります。どうすればよいですか? データベースにデータを挿入する前に、2 つのテーブルのセル量が同じであることを確認するために、これが必要です。

4

2 に答える 2

2

これを試して:

    DataTable dt1 = new DataTable(), dt2 = new DataTable();

    // define and populate your tables

    int count1 = dt1.Columns.Count * dt1.Rows.Count;
    int count2 = dt2.Columns.Count * dt2.Rows.Count;

    bool verified = count1 == count2;
于 2013-01-16T14:19:20.367 に答える
2
 DataTable tbl = new DataTable();
 foreach (DataRow row in tbl.Rows)
 {
   foreach (DataColumn col in tbl.Columns)
   {
     object cellData = row[col];
   }
 }
于 2013-01-16T14:22:13.603 に答える