Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データを含むデータ セット内にデータ テーブル 'A' があり、データ テーブル 'A' の最初の列を使用せずに、データ テーブル 'A' から別のデータ テーブル 'B' にデータを取得する必要があります。
基本的に、データ テーブルの最初の列を削除して、2 番目のデータ テーブルにマージする必要があります。
ただし、これは 1 行で行う必要があります。
誰もこれを行う方法を知っていますか???
ありがとう...
これを試して:
Table.Columns.Remove("columnName");
また
Table.Columns.RemoveAt(columnIndex);
私は答えを見つけました:)
DataSet.Table[0].Columns.Remove("Column_Name");