-2

xmlreaderを使ってxmlファイルを読みたいです。私はxmlファイルを持っています。ブランドコードを使用してブランド名を細かくしたい...

    <Root>
- <data>
  <Companycode> TF</Companycode> 
  <Productcode>00001</Productcode> 
  <Productname>VPU</Productname> 
  <Brandcode>001</Brandcode> 
  <Brandname>DB</Brandname> 
  </data>
- <data>
  <Companycode>TF</Companycode> 
  <Productcode>00002</Productcode> 
  <Productname>SENDERCARD</Productname> 
  <Brandcode>002</Brandcode> 
  <Brandname>LINSN</Brandname> 
  </data>
4

1 に答える 1

0

シリアライゼーション/デシリアライゼーションを使用し、ノードを次のようにマップするクラスを定義することをお勧めします。

class Product
{
string CompanyCode;
string ProductCode;
string ProductName;
...
于 2012-07-28T11:39:32.223 に答える