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 を LISTITEM に変換する方法、または xmltextreader を使用して xmlfile を読み取り、そのデータをリスト項目にアップロードする方法はありますか?
あなたの質問は比較的あいまいであるため、これの実際の実装は異なります。
DataSet 内の DataRows を単純に繰り返すことができます。
foreach(DataRow row in ds.Tables[0].Rows)
XMLDocument を使用し、Linq-to-Xml を使用して同じことを行うことができます。問題がある場合は、コードを投稿してください。