Logo

Programming-Idioms

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

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.

import "encoding/xml"
import "os"
buffer, err := os.ReadFile("data.xml")
if err != nil {
	return err
}
err = xml.Unmarshal(buffer, &x)
if err != nil {
	return err
}

buffer is a []byte.
&x is the address of x.
You must check errors after each step.
using System.Xml.Linq;
XDocument x = XDocument.Load("data.xml");


New implementation...
< >
programming-idioms.org