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.
如何使用 C#.NET 将 DATASET 转换为 LISTETEM,或者有什么方法可以使用 xmltextreader 读取 xmlfile 并将该数据上传到列表项中?
由于您的问题相对模糊,因此实际实施会有所不同。
您可以简单地遍历 DataSet 中的 DataRows:
foreach(DataRow row in ds.Tables[0].Rows)
您可以使用 XMLDocument 并使用 Linq-to-Xml 来做同样的事情。如果您遇到问题,请发布代码。