up vote 2 down vote favorite
share [g+] share [fb]

According to my LINQ book, this slightly altered example should work.

Why does it tell me "Object reference not set to an instance of an object"?

using System;
using System.Xml.Linq;

namespace TestNoAttribute
{
    class Program
    {
        static void Main(string[] args)
        {

            XDocument xdoc = new XDocument(
                new XElement("employee",
                    new XAttribute("id", "23"),
                    new XElement("firstName", new XAttribute("display", "true"), "Jim"),
                    new XElement("lastName", new XAttribute("display", "false"), "Smith")));

            XElement element = xdoc.Element("firstName");
            XAttribute attribute = element.Attribute("display"); //error

            Console.WriteLine(xdoc);

            Console.ReadLine();

        }
    }
}

Partial Answer:

I figured out if I change XDocument to XElement, then it works. Could anyone explain why?

link|improve this question

80% accept rate
Could you post your XML document, as well? – Tim S. Van Haren Aug 5 '09 at 15:20
feedback

2 Answers

up vote 4 down vote accepted

You are accessing a child element of xdoc that doesn't exist. Try one level down:

XElement element = xdoc.Element("employee").Element("firstName");

or

XElement element = xdoc.Descendants("firstName").FirstOrDefault();
link|improve this answer
Agreed, but why does it throw the exception on the next line of code, rather than this one? – Robert Harvey Aug 5 '09 at 15:24
Because in the next line of code element was null. If the element doesn't exist no exception is thrown (at xdoc.Element("firstName")). – bruno conde Aug 5 '09 at 15:27
OK I get it.... – Robert Harvey Aug 5 '09 at 15:29
feedback

See this on MSDN as to why. It explicitly explains their 'idiom' on why they felt returning a null element when the name is not found was beneficial.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.