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.
linqを使用して、同じテーブル内のある列データを別の列にコピーする方法を明確にしてください。
ありがとう、シヴァクマールゴル。
LINQなしで簡単に実行できます(目的はデータのクエリであり、変更ではありません)
foreach(DataRow row in table.Rows) row["AnotherColumn"] = row["OneColumn"];