Reading an XML File with .NET
Posted
by Daywalker21
on Stack Overflow
See other posts from Stack Overflow
or by Daywalker21
Published on 2010-04-02T04:58:47Z
Indexed on
2010/04/02
5:23 UTC
Read the original article
Hit count: 394
I am new to xml and unable to find a way to get content in between tags. My XML file is
<?xml version="1.0" encoding="utf-8"?>
<block1>
<file name="c:\w0.xml">
<word>Text</word>
<number>67</number>
</file>
<file name="c:\w1.xml">
<word>Text</word>
<number>67</number>
</file>
<file name="c:\w2.xml">
<word>Text</word>
<number>67</number>
</file>
</block1>
© Stack Overflow or respective owner