Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

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.

use XML::LibXML qw();
my $x = XML::LibXML->load_xml(
location => 'data.xml');
using System.Xml.Linq;
XDocument x = XDocument.Load("data.xml");


New implementation...