I have an XML file that contains several subTrees and those subtrees can also contain subtrees in them. something like this:
<File>
<A>...</A>
<B>...</B>
<C>
..
<D>..</D>
</C>
</File>
(The ".." are elements in the subtree). How can i read each subtree and then to reaad all its element (if this subtree containg a subtree i want to read it seperately and all his elements)?