-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 回答