Click here to Skip to main content
15,887,596 members
Articles / Programming Languages / C#
Alternative
Tip/Trick

Reading XML documents using LINQ

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
14 Jan 2011CPOL 9.8K   1  
Not really that big of a change, but I'd go with an XPath solution. It locates all of the "magic strings" into one spot.var nodes = from element in XElement.Load("Books.xml").XPathSelectElements("/Books/Book/Subject") select new { Value =...
Not really that big of a change, but I'd go with an XPath solution. It locates all of the "magic strings" into one spot.

C#
var nodes = from element in XElement.Load("Books.xml").XPathSelectElements("/Books/Book/Subject")
            select new
            {
                Value = element.Value.Trim()
            };
 
foreach (var n in nodes)
{
    listBox1.Items.Add(n);
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Since I've begun my profession as a software developer, I've learned one important fact - change is inevitable. Requirements change, code changes, and life changes.

So..If you're not moving forward, you're moving backwards.

Comments and Discussions

 
-- There are no messages in this forum --