Logo

Programming-Idioms

  • PHP
  • C++

Idiom #103 Load XML file into object

Read from the file data.xml and write its contents into the object x.
Assume the XML data is suitable for the type of x.

using System.Xml.Linq;
XDocument x = XDocument.Load("data.xml");


New implementation...