先谢谢各位抽时间看我的问题
1 我的XML文件嵌套了很多级
2 必须用一个数据结构将每级的所有Node的Name,Value,Attributes都存下来
存储的数据结构我现在这样设计的,大家看看有什么问题
TStoreInfo=Class
  NodeName:string;
  NodeValue:string;
  NodeAtt1,NodeAtt2,NodeAtt3:string;
end;
然后InfoList: array of TStoreInfo;
请问哪位能帮我完善下写个递归的?