T
Tony Johansson
Hello!
If I have this XML expression
XElement xElement =
new XElement("BookParticipants",
new XElement("BookParticipant",
new XAttribute("type", "Author"),
new XElement("FirstName", "Joe"),
new XElement("LastName","Rattz")));
how does it come that Element LastName is not a child to FirstName
when BookParticipant is a child to element BookParticipants.
//Tony
If I have this XML expression
XElement xElement =
new XElement("BookParticipants",
new XElement("BookParticipant",
new XAttribute("type", "Author"),
new XElement("FirstName", "Joe"),
new XElement("LastName","Rattz")));
how does it come that Element LastName is not a child to FirstName
when BookParticipant is a child to element BookParticipants.
//Tony