将数据表的部分合并为一个
我有一堆数据表(在列表中),全部有 50 列。
假设我想构建一个包含第 20-29 列和第 40-49 列的新数据表。 然后将每个数据表中的所有行复制到新表中。但仅限于那些选定的列。
DataTable.Merge() 将不起作用,因为我只想要列的子集。
实现这一目标的最佳方法是什么?
I have a bunch of data tables (In a list), all with 50 columns.
Say I want to build a new data table with columns 20-29 and 40-49.
and then copy all rows from each data table into the new one. but only those selected columns.
DataTable.Merge() will not work since I only want a subset of the columns.
What's the best way to achieve this goal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为简单的普通旧 for 循环应该在这些条件下发挥作用
注意
我还没有编译代码。
I think simple plain old for loops should do the trick under these conditions
Note
I haven't compiled the code.